无法绑定到“已禁用”,因为它不是“<button>”的已知属性

时间:2017-07-08 14:55:02

标签: javascript angular

我刚开始学习Angular但是我遇到以下错误: 无法绑定到“已禁用”,因为它不是<button>的已知属性。 在互联网上搜索我发现了类似的错误,但它们与未导入FormsModule的事实有关,这似乎不是我的情况。

app.components.ts

import { Component } from '@angular/core';

@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.css']
})
export class AppComponent {
  title = 'app';
  Button = false;
}

app.component.html

<div style="text-align:center">
  <h1>
    Welcome to {{title}}!!
  </h1>
  <button [Disabled]="!Button">Click me</button>
</div>

app.module.ts

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';

import { AppComponent } from './app.component';

@NgModule({
  declarations: [
    AppComponent,
  ],
  imports: [
    BrowserModule,
    FormsModule,
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }

1 个答案:

答案 0 :(得分:6)

试试这个

 <button [disabled]="!Button">Click me</button>