我正在寻找使用TypeScript在Ionic 2中等效的Angular $rootScope
,$scope
和$watch
。
答案 0 :(得分:1)
我不知道确切的等价物,但我已将其替换为以下内容:
$ rootScope:处理存储的提供商
export class AppGames {
get GAME_NAMES(): any {
return 'pizza/hut';
}
$ scope:this
export class BuyTopUpModalPage {
dataList: any = [];
constructor() {
this.dataList = ['we', 'won']
}
$ watch:Observable
答案 1 :(得分:1)