gpt4 book ai didi

angular - “ng-select”不是已知元素

转载 作者:太空狗 更新时间:2023-10-29 18:18:30 26 4
gpt4 key购买 nike

这是我的代码:我想在我的表格上添加 https://github.com/ng-select/ng-select多选标签输入。

组件.module.ts:

import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { HttpClientModule } from '@angular/common/http';

import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { NgSelectModule } from '@ng-select/ng-select';


@NgModule({
imports: [
CommonModule,
HttpClientModule,
FormsModule,
ReactiveFormsModule,
NgSelectModule,
]

})

export class ComponentsModule { }

我的模态测试.component.html

  <div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<label class="control-label">
<strong>Gusti:</strong>
</label>
[ERROR] ---> <ng-select [items]="testitems" [hideSelected]="true" multiple="true" bindLabel="text1"></ng-select>
</div>

我的错误是:无法绑定(bind)到“items”,因为它不是“ng-select”的已知属性 为什么?????

你能帮帮我吗?非常感谢!

最佳答案

您必须在声明您的 ModalTestComponent 的模块中导入 NgSelectModule,或者,如果您的 ComponentsModule 是一个包装器,您应该导入在其中声明 ModalTestComponent 的模块;这样:

import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { HttpClientModule } from '@angular/common/http';

import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { NgSelectModule } from '@ng-select/ng-select';
// add this line
import { ModuleThatDeclaresModalTest } from 'path/to/module'


@NgModule({
imports: [
CommonModule,
HttpClientModule,
FormsModule,
ReactiveFormsModule,
NgSelectModule,
// and this line
ModuleThatDeclaresModalTest
]

})

export class ComponentsModule { }

作为替代方案,如@Narm 所说,您可以在 AppModule 中导入 NgSelectModule,以便所有子模块都可以使用它。

关于angular - “ng-select”不是已知元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51446254/

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