您可以通过 Javascript 保存/加载文件吗?
我想使用 HTML5 (Canvas) 创建一个非常简单的 Javascript 游戏.但是是否可以保存一个简单的 .txt 文件并加载一个简单的 .txt 文件.我只需要像一些简单的整数一样存储.但我只想知道是否允许javascript保存和加载外部文件?
I want to create a very simple Javascript game using HTML5 (Canvas). But is it possible to save a simple .txt file and load a simple .txt file. I just need to store like the some simple integers. But I just want to know if javascript is allowed to save and load an external file?
画布
推荐答案
在 Chrome 上,您可以依赖 FileSystem API(用于介绍 看这里).可能其他浏览器很快就会添加对它的支持.
On Chrome, you can rely on the FileSystem API (for an intro take a look here). Probably other browsers will soon add support to it.
但是,如果您的需要只是像一些简单的整数一样存储",我会考虑 本地存储.
But, if your need is just "to store like the some simple integers" I would consider local storage.
相关文章