Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
文件说_
如果您指定文件名,数据库将是持久的,并根据浏览器自动选择可用的最佳存储方法(IndexedDB、WebSQL 或 localStorage)。
非常简短的示例仅显示内存使用情况。我不确定我可以指定什么样的文件名,以便对客户端浏览器有意义。
建议?
更新:更多的上下文。我想在客户端的浏览器中进行离线存储,然后定期同步到服务器(当连接可用时)。我不确定 NeDB 是否是实现这一目标的正确方法,因此也欢迎对此提出建议。
您需要指定文件名并自动加载...它适用于我:
var db = new Nedb({ filename: 'library.db', autoload: true });