gpt4 book ai didi

angular - 'NgIf' 既不是 'ComponentType' 也不是 'DirectiveType'

转载 作者:行者123 更新时间:2023-12-05 02:43:20 24 4
gpt4 key购买 nike

在一个非常简单的组件中使用 *ngIf 时,我在标题中得到了错误。例如,下面的代码和 app.module 导致了这个:

应用程序组件.html:

<ng-container *ngIf="true">
<div>True</div>
</ng-container>

应用程序模块.ts:

import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppComponent } from './app.component';

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

我很困惑是什么原因造成的。 *ngFor 指令有同样的问题。项目的其余部分直接来自 ng new 生成的文件。

"@angular/core": "~11.2.8"

最佳答案

损坏的或其他奇怪的 node_modules 很可能是问题的根源。

运行 npm ci 解决了这个问题。

关于angular - 'NgIf' 既不是 'ComponentType' 也不是 'DirectiveType',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66950365/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com