我有一个名为 test 的类,其中的属性是数据。当 test.data 更新时,如何绑定home.showVar
,test.data
home.showVar 也会更新(我想向用户显示列表)
基本上我想要一个名为 test 的服务,它触发 api 调用,然后返回数据并与现有数据合并,然后显示给用户。我是 angular2 和打字稿的新手。所以我不确定如何将http数据与现有数据合并并使其与不同的页面绑定。
export class test {
public data = 'yes';
constructor() { }
}
@Page({
templateUrl: 'home.html'
})
export class Home {
showVar;
constructor(test: test) {
this.showVar = test.data;
}
}