标签: angular ionic2 lifecycle ionic3
我创建了一个新的离子3项目。在我的HomePage中,我只有一个变量和一个函数:
HomePage
count = 0; printLog() { console.log("count", ++this.count); }
在模板home.html中,我通过插值绑定调用此函数:
home.html
{{printLog()}}
这是我的全部代码。在控制台中我看到日志: 我们可以看到printLog函数被调用了9次。我不明白为什么。有人能告诉我为什么以及如何运作? 非常感谢!
printLog