如何启用本地 JavaScript 来读取/写入我的 PC 上的文件?
由于 Greasemonkey 无法从本地硬盘读取/写入文件,因此我听到有人建议使用 Google gears,但我对 gears 一无所知。
所以,我决定添加一个
<script type="text/javascript" src="file:///c:/test.js">/script>
现在,这个测试将使用 FileSystemObject 来读/写文件。由于 file:///c:/test.js
是本地硬盘上的 JavaScript 文件,因此它应该能够读取/写入本地硬盘上的文件。
我尝试过,但 Firefox 阻止了 file:///c:/test.js
脚本从本地磁盘读取/写入文件。 :(
Firefox 的 about:config
中是否有任何设置,我们可以指定让特定脚本(例如来自 localfile 或 xyz.com)对我的本地磁盘文件具有读/写权限?
Since Greasemonkey can't read/write files from a local hard disk, I've heard people suggesting Google gears but I've no idea about gears.
So, I've decided to add a
<script type="text/javascript" src="file:///c:/test.js">/script>
Now, this test will use FileSystemObject to read/write file. Since, the file:///c:/test.js
is a javascript file from local hard disk, it should probably be able to read/write file on my local hard disk.
I tried it but Firefox prevented the file:///c:/test.js
script to read/write files from the local disk. :(
Is there any setting in Firefox's about:config
where we can specify to let a particular script, say from localfile or xyz.com, to have read/write permission on my local disk files?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在 chrome 范围内使用它们。
示例:
另请参阅
You can use these within chrome scope.
Example:
See Also