Ionic SqlStorage未定义

时间:2016-04-29 02:58:14

标签: ionic-framework

我正在尝试在离子应用中使用SqlStorage。我在标题中收到错误。我猜我需要包含SqlStorage,但我不知道在哪里。我的代码看起来很像文档http://ionicframework.com/docs/v2/api/platform/storage/SqlStorage/中的内容。你如何包括SqlStorage?

var prefrences = {
foo: bar
}
let storage = new Storage(SqlStorage);
storage.set('storedPreferences', preferences);

1 个答案:

答案 0 :(得分:1)

通过import语句将SqlStorage添加到“include”包列表中。即

import {SqlStorage} from 'ionic-angular';

例如

    import {SqlStorage,...} from 'ionic-angular';

    @Page({
      templateUrl: 'path/to/template'
    })

    export class MyPage {
       constructor(){
          let storage = new Storage(SqlStorage);
          ...
       }
    ...
    }