2

我试图创建一个数据库,并将一个集合添加到该数据库中,并将更改保存到 IndexedDB。

下面是我的代码

  1. 两个控制器 SaveController 和 LoadController。

myApp.controller('SaveController', ['$scope', 'Loki', function ($scope, Loki) {

// SAVE : will save App/Key/Val as 'finance'/'test'/{serializedDb}
// if appContect ('finance' in this example) is omitted, 'loki' will be used
var idbAdapter = new LokiIndexedAdapter('finance');

var db = new loki('ProjectDb', { adapter: idbAdapter });

var coll = db.addCollection('SampleCollection');
coll.insert({ SampleId: 'Sample text.....' });

db.saveDatabase();  // could pass callback if needed for async complete

}]);

然后在我的 LoadController 我使用

myApp.controller('LoadController', ['$scope', 'Loki', function ($scope, Loki) {

var idbAdapter = new LokiIndexedAdapter('finance');

var db = new loki('ProjectDb', { adapter: idbAdapter, autoload: true });
db.loadDatabase({}, function (result) {
    console.log(result);
});

alert(db.getCollection("SampleCollection"));

}]);

当我提醒“alert(db.getCollection("SampleCollection"));”时我得到一个空值 . 它永远不会进入“loadDatabase”方法的回调。

有什么我想念的吗?

浏览器中的 IndexedDB

索引数据库

这里的页面html

页面 HTML

lokijs 脚本控制器

编辑默认的本地存储实现

我使用 loki js 的默认实现,我尝试加载离线数据库,即使数据库存在,每次都将结果显示为 null

var offlineDb = new loki('DbOfflineNew');
    offlineDb.loadDatabase({},function (result) {
        console.log(result);
        if (result == null) {
            alert('loading for first time..');
        }
        else {
            alert('existing load..');
        }
    });

每次警报“第一次加载..”被触发..我在这里遗漏了什么..?

4

1 回答 1

5

基本上你所有的逻辑都需要在 loadDatabase 回调中。如果您在加载之前尝试console.log集合,它将为空。很多人都掉进了这个陷阱。

换句话说:

myApp.controller('LoadController', ['$scope', 'Loki', function ($scope, Loki) {

var idbAdapter = new LokiIndexedAdapter('finance');

var db = new loki('ProjectDb', { adapter: idbAdapter, autoload: true });
db.loadDatabase({}, function (result) {
    console.log(result);
    // put your log call here.
    alert(db.getCollection("SampleCollection"));
});
}]);

希望这可以帮助。

于 2015-08-06T16:20:53.297 回答