作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在一个非常简单的组件中使用 *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/
在一个非常简单的组件中使用 *ngIf 时,我在标题中得到了错误。例如,下面的代码和 app.module 导致了这个: 应用程序组件.html: True 应用程序模块.ts: import
我是一名优秀的程序员,十分优秀!