我在 Angular2 项目中实现 Dexie 2.0。
我有一个简单的表,它应该只包含一个用于订单命名的记录。
如果表有记录,我要做的是检查 IndexedDb,如果没有,则初始化它......非常简单。
这是代码:
this.OrderCounter.toArray().then(function (arr) {
if (arr.length == 1) {
console.log('Do nothing');
}
else {
console.log('Initialize Counter');
this.OrderCounter.add(1);
}
});
在这一刻,表是空的,如果我运行脚本,我会在初始化记录的行命令上得到“这是未定义的”......
我必须改变什么?
感谢支持