我在Angular应用程序中发现了一个非常奇怪的问题。
假设我有一个简单的example.component.ts
@Component({
moduleId: module.id.toString(),
selector: 'example',
templateUrl: 'example.component.html',
styles: [``]
})
export class ExampleComponent{
get buttonShouldBeDisabled(){
console.log("property call");
return true;
}
}
模板定义如下
<html>
<body>
<button type="button" [disabled]="buttonShouldBeDisabled">Button</button>
</body>
</html>
现在在我的浏览器控制台中我可以看到,无限期地记录了字符串“属性调用”。
什么可能导致这种行为?我是否理解正确,这意味着,我的财产被一遍又一遍地调用,这可能导致浏览器无法响应用户操作?
答案 0 :(得分:1)
你的整体方法很好,我会像这样修改它
export class ExampleComponent{
isValid: boolean;
buttonShouldBeDisabled(){
console.log("property call");
return this.isValid;}}
将html元素绑定到isValid
<button [disabled]="!buttonShouldBeDisabled>Button</button>
现在您只需设置布尔值,例如点击另一个按钮即可切换&#39;禁用&#39; 希望这有助于柏林的问候。
答案 1 :(得分:0)
我也在Angular中注意到这件事。它不是一个问题,它与Angular方法有关,可以检测每个组件的变化。