Mozilla Addon-SDK 的存储选项
我是 Addon-SDK 的新手。我正在制作一个插件,在其中记录一些信息,以便稍后手动查看。我遇到了 简单存储 API,但据我所知,它以某种格式在内部保存信息,这些格式只能通过函数调用(即“ss.storage.variable_name”)访问。
我想知道是否可以从 Windows 目录结构(即配置文件目录中的某个文件)以某种方式访问此信息。
其次,有没有办法访问 SQlite 数据库或任何第三方数据库 派对API?
(我不知道为什么,但是这个 API 的 cfx 测试给了我错误,所以无法 使用这个)。
I am a newbie to Addon-SDK. I am making an Addon in which I log some information meant for manually viewing later on. I came across the
Simple-Storage API but as far as I could figure out, it saves the information internally in some format which can only be accessed via function calls i.e. "ss.storage.variable_name".
I was wondering if this information is accessible somehow from windows directory structure i.e. maybe from some file in the profile directory.
And secondly, is there any way to access the SQlite Database, or any third
party API?
(I don't know why but the cfx test for this API gives me errors, so not able
to use this).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试通过Javascript使用HTML5的localStorage: http://www.w3schools.com/html/html5_webstorage .asp
然后使用商店: https://developer.mozilla.org/es/docs/Storage
You can try with localStorage of HTML5 via Javascript: http://www.w3schools.com/html/html5_webstorage.asp
And then with Store: https://developer.mozilla.org/es/docs/Storage