支持类似查询的本地存储库
我正在寻找一个位于 localstorage
之上的 JavaScript 库,支持 like
查询。
这本身很容易写,但我不想重新发明轮子。
人们使用哪些本地存储库?
I am looking for a javascript lib that lives on top of localstorage
that supports like
queries.
This in itself would be easy to write, but I wouldn't want to reinvent the wheel.
What localstorage libs do people use?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您需要 JavaScript 中的 SQL 接口,请使用 Web SQL 数据库 API。我认为大多数浏览器都支持这一点。
如果您想要对象数据库接口,请使用Lawnchair。它没有
like
查询,但您可以存储具有索引的对象并使用它来查询。If you want an SQL interface in JavaScript, use the Web SQL Database API. I think most browsers support this.
If you want an object database interface, use Lawnchair. This doesn't have a
like
query, but you could store an object that has an index and use that to query.