无法绑定到 [(ngModel)],因为任何适用指令均未提供它

Can't bind to [(ngModel)] since it is not provided by any applicable directives

刚开始研究Angular想尝试实现2路绑定

app.module.ts

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

import { AppComponent } from './app.component';
import {FormsModule} from '@angular/forms';

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

app.component.ts

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

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

app.component.html

<input type="text" [(ngModel)]="title">
<p>{{title}}</p>

此代码运行并正常工作,但由于某些原因在 IDE(我使用的是 WebStorm)中出现此错误:

P.S。 是的,我阅读了与此错误相关的主题,但所有答案都说只是导入 FormsModule,我还是做了。

P.P.S 我注意到 IDE 在 运行 ng serve 命令之前工作正常。

我今天在执行 Angular 版本更新(从 10->12)后也遇到了 webstorm 的这个问题。 Angular 12 使用较新的 Typescript 版本,我认为这是导致 IDE 中出现此错误的原因。更新到最新的 webstorm 版本为我修复了它。