我收到此错误
嵌入模板上的任何指令都没有使用属性绑定 ngIf。确保属性名称拼写正确,并且所有指令都列在“@NgModule.declarations”中
即使你在我跑步时也能正常工作ng serve
。
当我将 angular 更新为v13
.
我已经尝试重新启动Vscode并重新安装Angular 语言服务并安装以前版本的Angular 语言服务......它们都不起作用......
我的app.module.ts
:
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
@NgModule({
declarations: [AppComponent],
imports: [CommonModule, BrowserModule, AppRoutingModule],
providers: [],
bootstrap: [AppComponent],
exports: [CommonModule, BrowserModule],
})
export class AppModule {}