跨浏览器,客户端应用程序的对象持久性库
我正在 HTML 应用程序中创建基于客户端的应用程序 (HTA),我想知道是否有一个类似于 python 的对象持久库 shevle 满足以下条件:
- 应该能够读取和写入文件
- 跨浏览器: 应该至少在 HTA 和 Firefox(通过 XULRunner)上工作,这样我就不会与任何供应商绑定。
- 以 JavaScript 形式编写的
TiddyWiki 能够保存自身,无论使用什么浏览器,尽管保存和检索的代码必须重构文件才能满足我的需要。
I'm creating a client based application in HTML Application (HTA) and I would like to know if there's a object persistent library similar to python's shevle that meets the following criteria:
- Should be able to read and write on file
- Cross browser: should work at least on both HTA and on Firefox (through XULRunner) so that I'll be not tied to any vendor.
- Written in JavaScript form
TiddyWiki is able to save itself, regardless of the browser used, though the codes that saves and retrieves files has to be refactored to meet my need.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,我不知道 TiddyWiki 有 github 存储库,他们按 github 存储库组织文件="https://github.com/TiddlyWiki/tiddlywiki/tree/master/js" rel="nofollow">模块。
我可以使用
FileSystem.js
文件并在其上构建一个很好的 api 来模拟shelve
功能。Well, I wasn't aware that TiddyWiki has a github repository, and they organized the files by module.
I could just take the
FileSystem.js
file and build a nice api on top of it to simulateshelve
functionality.