我创建了一个具有 angular 2 的 NativeScript 应用程序,我有一个我希望在应用程序前端看到的对象数组。行为是,如果我将一个对象直接推入 ngOnInit() 内部的数组中,它会起作用,但如果我在 ngOnInit() 中创建一个承诺,它就不起作用。这是代码:
export class DashboardComponent {
stories: Story[] = [];
pushArray() {
let story:Story = new Story(1,1,"ASD", "pushed");
this.stories.push(story);
}
ngOnInit() {
this.pushArray(); //this is shown
var promise = new Promise((resolve)=>{
resolve(42);
console.log("promise hit");
});
promise.then(x=> {
this.pushArray(); //this is NOT shown
});
}
}
相对的html是:
<Label *ngFor="let story of stories" [text]='story.message'></Label>
当应用程序启动时,我只看到一个推送,但我创建了一个触发“console.log(JSON.stringify(this.stories))的按钮;” 在那一刻,当我点击按钮时,用户界面似乎检测到了更改的数组,并出现了另一个推送的对象。
编辑:
我在这个线程中创建了一个更简单的例子:Angular 2: when I change a variable in a promise.than in ngOnInit the view doesn't refresh