如何创建在会话之间保留的客户端数据库?
我正在使用 HTML5 使用 Lawnchair Javascript 库创建一个客户端数据库,但是当您创建一个新的 Lawnchair 对象时,我得到的是一个新的本地存储,而不是一个新的数据库,
var people = new Lawnchair('people');
问题是在本地存储中我只是一张表,而且我需要能够创建多个表。
I'm working with HTML5 to create a client-side database using the Lawnchair Javascript library, but when y create a new Lawnchair object what i get is a new local storage, not a new database
var people = new Lawnchair('people');
the problem is that in local storage I have just one table, and i need to be able to create more than just one table.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以参考此页面了解本地数据库的使用。但并非所有浏览器都支持它。
http://blog.darkcrimson.com/2010/05/local-databases/
You can ref to this page for local database usage.But not all browser support it yet.
http://blog.darkcrimson.com/2010/05/local-databases/
您可能想要使用 Web SQL 数据库,但这仅由 Chrome、Safari 和 Opera 实现。如果这不是问题,请查看此处: http://www.html5rocks.com/tutorials/offline /storage/
顺便问一下,你的意思是
?
您可以使用本地存储来保存不同的值,如下所示:
值是字符串,因此如果您愿意,您也可以保存 json 或其他内容。
You might want to use Web SQL Database, but that's implemented only by Chrome, Safari, and Opera. If that is not a problem look here: http://www.html5rocks.com/tutorials/offline/storage/
By the way what do you mean with
?
You could use the local storage to hold different values, like so:
Values are strings, so you can also save say json or something else if you like.