如何消除Angular2中的错误:“如果x是一个ng组件,请验证它是否为此模块的一部分”

时间:2016-10-31 23:13:45

标签: angular

以前在“如何将组件导入Angular 2中的另一个根组件”中提出了一个类似的问题,但它没有回答我的问题,因为我已经将我的组件添加到声明中,等等。这是错误消息我'接收,我的问题是,如何摆脱它: “模板解析错误: 'map-component'不是已知元素: 1.如果'map-component'是Angular组件,则验证它是否是此模块的一部分。 2.如果'map-component'是Web组件,则将“CUSTOM_ELEMENTS_SCHEMA”添加到此组件的'@ NgModule.schemas'以禁止显示此消息。 (\”               {{extra}}         [错误 - >]

这是app.module中的代码:

upgraded

然后从map.component.ts:

import { MapComponent } from './map/map.component';

@NgModule({
  imports: [
    BrowserModule,
    FormsModule
  ],
  declarations: [ 
    AppComponent,
    UserProfileComponent,
    UserFormComponent,
    MapComponent
 ],

谢谢,这是我第一次使用这个框架,我非常感谢任何见解。

0 个答案:

没有答案