非常簡單,我有一個包含sting的組件Angular2在輸入字段中單向數據綁定
我需要在輸入fieid中顯示此字符串。
我以爲我需要這樣但它不起作用。
// Component
import {Component} from "@angular/core";
@Component({
selector: 'my-component',
templateUrl: './my-compoent.template.html';
})
export class MyComponent{
constructor(){
}
myVar: string = "Hello World"
}
// HTML
<input type="text" ([ngModel])="myVar" >
使用'[(ngModel)] = 「myVar的」'(或'[ngModel] = 「myVar的」'如果只是單向綁定) – amal
真您ngModel語法錯誤 –
'[ngModel] =」 myVar「'不起作用 – ttmt