1
我是新角度。我在Visual Studio Code中工作。輸入框不顯示在角
我app.component.html看起來是這樣的:
<input type="text" [(ngModel)]="name">
<p>{{ name }}</p>
我app.component.ts看起來是這樣的:
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
name = '';
}
我的問題是,在輸入框中沒有在顯示瀏覽器http://localhost:4200/
它給這個錯誤: –
無法編譯。 C:/Users/Dell/my-first-app/src/app/app.module.ts(14,5):找不到名字'ProfileListComponent'。 –
@Boidurja ProfileListComponent是Shashi代碼的示例,因此您不需要添加ProfileListComponent ...添加組件並將FormsModule導入模塊文件 – Chandru