我有两个页面:home.ts和stade.ts
我已经在Ionic 3的home.ts页面中使用PouchDb创建了所有文档,并添加了一些数据。
我希望获得已经在home.ts中但在stade.ts页面中创建的文档。
this.db.get(187).then(function (doc) {
// handle doc
}).catch(function (err) {
console.log(err);
});
当我加载此stade.ts页面时,会出现这种错误:
ERROR TypeError: Cannot read property 'get' of undefined