Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: 是否可以使用 JavaScript 写入文件(在磁盘上)?
是否可以将文件写入文件系统,比如C:\myfile\myfile.bin使用 Javascript?
C:\myfile\myfile.bin
我有这个功能:
var data = MyObject.getdata(); // typeof data = "object"
我想将“数据”写入文件以进行调试。
不,但您可以在 HTML5 上使用新的本地存储 -
http://diveintohtml5.info/storage.html
localStorage.setItem("bar", Data);
您可以将文件写入文件系统 throw ActiveX,但它仅适用于 Windows 且仅适用于 IE。