0

我有一ionic 2堂课:

export class SettingsPage {

  public num = 2;
  public num1 = 3;

  constructor(public navCtrl: NavController, public navParams: NavParams,
              public storage: Storage) {
    storage.ready().then(() => {

      // Or to get a key/value pair
      storage.get('num').then((val) => {
        if (val != null) {
          this.num = val;
        } else {
          this.num = 2;
        }

      })
    });
  }

最佳做法是什么?有没有办法监听任何变量(numnum1)的任何变化,然后将值设置回存储以保持它?

4

1 回答 1

3

这个问题与 Ionic 无关,但与 TypeScript 无关。

get您可以使用&方法定义属性,set例如:

class YouClass {
    private _num: boolean = false;

    get num(): boolean {
        return this._num;
    }

    set num(value: boolean) {
        this._num = value;

        // Here you can save the value in the storage ...
        this.storage.set('num', value);
    }
}

set可以做任何你想做的事。包括保存到存储。

于 2017-03-24T10:34:39.123 回答