gpt4 book ai didi

javascript - Angular 2 - 'imports' 在类型 'ComponentMetadataType' 中不存在

转载 作者:行者123 更新时间:2023-11-30 15:52:54 27 4
gpt4 key购买 nike

我有一个 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/

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