- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是angular的初学者,我开发了一个小应用程序,但是我有一个问题,*ngIf
, *ngFor
, nfForm
不起作用(我认为错误 CommonModule )
文件.html:
<div class="col-sm-3 form-group">
<div>
<select class="form-control">
<option selected value="">Select Project</option>
<option *ngFor='let app of projetsa' [value]="app?.projectId">
{{app?.ProjetName}}
</option>
</select>
</div>
</div>
应用模块.ts:
import { BrowserModule } from '@angular/platform-browser';
import { CommonModule } from '@angular/common';
.
.
.
@NgModule({
declarations: [...],
imports: [ BrowserModule, CommonModule,...],
providers: [...],
bootstrap: [AppComponent]
})
export class AppModule { }
export function getBaseUrl() {
return document.getElementsByTagName('base')[0].href;
}
包.json :
"dependencies": {
"@angular/animations": "^5.0.0",
"@angular/common": "^5.0.0",
"@angular/compiler": "^5.0.0",
"@angular/core": "^5.0.0",
"@angular/forms": "^5.0.0",
"@angular/http": "^5.0.0",
"@angular/material": "^7.3.7",
.
.
.
}
最佳答案
如果它是根模块 (AppModule),则将 BrowserModule 添加到 @NgModule()
中的导入数组,否则为 CommonModule。
import {BrowserModule, CommonModule} from '@angular/common';
@NgModule({
imports: [BrowserModule, /* or CommonModule */],
})
关于angular - 无法绑定(bind)到 'ngForOf',因为它不是 Angular 5 中的已知属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56274324/
我收到此错误 Property binding ngForOf not used by any directive on an embedded template. Make sure that th
我收到此错误 Property binding ngForOf not used by any directive on an embedded template. Make sure that th
在angular API它说在 4.0 及更高版本中使用 NgForOf 而不是 NgFor 的文档。但是 Fundamentals , 和 Heroes tutorial , 文档演示了NgFor,
据我了解,两者都在执行相同的功能。但是, ngFor 会像 collections 一样工作?. ngForOf 会像 generics 一样工作?. Is my understanding is c
将 ngFor 添加到 div 时,我收到以下警告,它似乎阻止了我的 HTML 呈现。 我的应用程序上只有一个模块,并且 BrowserModule 被导入到导入中,这似乎解决了大多数人的问题,但对我
这个问题在这里已经有了答案: Can't bind to 'ng-forOf' since it isn't a known native property [duplicate] (11 个答案)
我试图在表格中显示数据库中的一些数据,我收到此错误,我在网上找到的唯一解决方案是导入 CommonModule 和 NgModule,我已经这样做了,所以我不明白哪里出了问题。这只发生在这个组件中,不
我是angular的初学者,我开发了一个小应用程序,但是我有一个问题,*ngIf, *ngFor, nfForm不起作用(我认为错误 CommonModule ) 文件.html:
我正在使用 Angular2 2.1.0。当我想显示公司列表时,我遇到了这个错误。 在 file.component.ts 中: public companies: any[] = [ { "
这个问题在这里已经有了答案: *ngFor is not working in angular 2 (1 个回答) 关闭 6 年前。 我开始使用 Angular2(最终版),但在使用 *ngFor
ngFor在我的应用程序中不起作用。 我将我的应用程序拆分为单独的模块并包含 import { CommonModule } from '@angular/common';进入我的子模块和import
当尝试使用电话号码填充简单的 radio 组列表时 无法绑定(bind)到“ngForOf”,因为它不是“ion-item”的已知属性。 问题与 Angular 9 有关。Possible solut
我是一名优秀的程序员,十分优秀!