订阅Ionic Events后,我无法运行代码。该事件与具有完整功能以了解其状态的可观察事件不同。
查看代码:
sumRating = reviews => {
let total = 0;
agent.reviews.forEach(a => {
total+= a.local_knowledge_rating;
});
return total;
}
<p style={{fontSize: 15}}>Knowledge Rating: {this.sumRating()}</p>
如何在订阅完成后将this.isLoading设置为false?