我有一个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;
}
})
});
}
最佳实践是什么?有没有办法监听任何变量(num
,num1
(中的任何变化,然后将值设置回存储以持久化它?
这个问题与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
你可以做任何你想做的事。包括保存到存储。