0

我创建了一个组件名称服务器。在 servers.component.ts 我创建了一个变量名 allowServer ,其布尔值为 false (在应用程序启动时禁用按钮)。在构造函数中,我使用了 javascript setTimeout 函数将 allowServer 的值更改为 True。值正在更改,但按钮未启用

服务器.component.ts

servers.component.html 我在做什么错?

4

1 回答 1

0

您需要使用 ArrowFunction ()=> 在setTimeOut.

setTimeout(()=>{    
      this.allowServer = true;
 },3000);
于 2017-10-30T09:52:34.933 回答