已找到 1 篇 关于 Ember JS 的文章

如何使用可用的服务器同步来创建离线的 Ember.js 应用程序?

Arjun Thakur
更新于 2020 年 6 月 25 日 07:55:53

103 次查看

使用 ember-localstorage 适配器。App.store = DS.Store.create({    revision: 11,    adapter: DS.LSAdapter.create() });示例你需定义用于客户端存储的适配器 −App.Store = DS.SyncStore.extend({    revision: 10,    adapter: DS.IndexedDB.adapter({       mappings: {          person: App.Person,          persons: App.Person,          contact: App.Contact,          contacts: App.Contact       }    }) });

1
广告