Ionic3 / Angular2视图渲染多次

时间:2017-06-07 01:54:46

标签: angular ionic2 lifecycle ionic3

我创建了一个新的离子3项目。在我的HomePage中,我只有一个变量和一个函数:

count = 0;
printLog() {
    console.log("count", ++this.count);
}

在模板home.html中,我通过插值绑定调用此函数:

{{printLog()}}

这是我的全部代码。在控制台中我看到日志:
enter image description here
我们可以看到printLog函数被调用了9次。我不明白为什么。有人能告诉我为什么以及如何运作?
非常感谢!

0 个答案:

没有答案