作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 Angular 2 应用程序,现在我想使用双向绑定(bind)。当我尝试分配 imports: [FormsModule]
时,发生错误:
Argument of type '{ imports: typeof F...' is not assignable to parameter of type 'ComponentMetadataType'.
Object literal may only specify known properties, and 'imports' does not exist in type 'ComponentMetadataType'.
代码如下:
import {Component, OnInit} from '@angular/core';
import {TodoService} from '../todo.service'
import {FormsModule} from '@angular/forms'
@Component({
moduleId: module.id,
selector: 'app-todos',
templateUrl: 'todos.component.html',
styleUrls: ['todos.component.css'],
imports: [FormsModule]
})
最佳答案
您不能在组件中使用imports
。您应该在 ngModule
装饰器中导入所有必需的依赖项。
请查看以下来自 Angular JS documentation 的示例:
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { AppComponent } from './app.component';
@NgModule({
imports: [
FormsModule
],
declarations: [
AppComponent
],
bootstrap: [ AppComponent ]
})
export class AppModule { }
关于javascript - Angular 2 - 'imports' 在类型 'ComponentMetadataType' 中不存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39037271/
我有一个 Angular 2 应用程序,现在我想使用双向绑定(bind)。当我尝试分配 imports: [FormsModule] 时,发生错误: Argument of type '{ impor
我是一名优秀的程序员,十分优秀!