0
我在Typescript中使用帶有Ionic 2的PouchDB。我是否需要在Ionic 2應用程序的每個頁面中實例化數據庫服務
initDB(){
console.log("Initialising the DB");
this._db = new PouchDB('mydb', {adapter:'websql'});
}
我是否需要在實例化Individual PageClasses Everytime時運行這段代碼?