Material Angular2 中的设计组件 "is not a known element"
Material design component "is not a known element" in Angular2
我有一个混合的 Angular1 和 Angular2 应用程序。在我路由到的 Angular2 组件之一中,我想使用 Material 设计按钮。
当我像这样将按钮插入模板时 <md-button>foo</md-button>
应用程序开始崩溃并显示此控制台消息
Error: Template parse errors:
'md-button' is not a known element:
1. If 'md-button' is an Angular component, then verify that it is part of this module.
2. If 'md-button' is a Web Component then add "CUSTOM_ELEMENTS_SCHEMA" to the '@NgModule.schemas' of this component to suppress this message. ("<h1>Job</h1>[ERROR ->]<md-button>material</md-button>"): JobComponent@0:12
at TemplateParser.parse (http://localhost:3000/node_modules/@angular/compiler/bundles/compiler.umd.js:8321:21)
所以,这听起来像是消息中的情况 1,但我已经尝试了 to add MdButton
to the imports
property of my NgModule
(which already contained MaterialModule.forRoot()
as adviced by the documentation) 中给出的建议,但如果我这样做了,整个应用程序将在控制台中变为空白而不会出现错误。
这里是一些相关的代码
import { UIRouterModule } from "ui-router-ng2";
import { Ng1ToNg2Module, uiRouterNgUpgrade } from "ui-router-ng1-to-ng2";
import { MaterialModule, MdButton } from '@angular/material';
const upgradeAdapter: UpgradeAdapter = new UpgradeAdapter(
forwardRef(() => XamFlowNg2Module));
uiRouterNgUpgrade.setUpgradeAdapter(upgradeAdapter);
angular.module("xamFlow")
.factory("consoleService",
upgradeAdapter.downgradeNg2Provider(ConsoleService));
/*
* Expose our ng1 content to ng2
*/
upgradeAdapter.upgradeNg1Provider("restService");
@NgModule({
declarations: [
JobComponent,
],
entryComponents: [
// Components that are routed to must be listed here, otherwise you'll get "No Component Factory"
JobComponent,
],
imports: [
CommonModule,
BrowserModule,
FormsModule,
HttpModule,
Ng1ToNg2Module,
MaterialModule.forRoot()
],
providers: [
ConsoleService,
ImageService
]
})
class MyModule { }
upgradeAdapter.bootstrap(document.body, ["myApp"]);
应该是
<button md-button>foo</button>
或
<button md-raised-button>foo</button>
有时,当您向 angular2 添加新组件时,它不会直接注册标签,在这种情况下您必须做两件事:
转到 app.component.ts 文件
- 1) 在"import {component}"中手动插入要添加的按钮
- 2) 在@Component 中注册你的组件并给出路径
我有一个混合的 Angular1 和 Angular2 应用程序。在我路由到的 Angular2 组件之一中,我想使用 Material 设计按钮。
当我像这样将按钮插入模板时 <md-button>foo</md-button>
应用程序开始崩溃并显示此控制台消息
Error: Template parse errors:
'md-button' is not a known element:
1. If 'md-button' is an Angular component, then verify that it is part of this module.
2. If 'md-button' is a Web Component then add "CUSTOM_ELEMENTS_SCHEMA" to the '@NgModule.schemas' of this component to suppress this message. ("<h1>Job</h1>[ERROR ->]<md-button>material</md-button>"): JobComponent@0:12
at TemplateParser.parse (http://localhost:3000/node_modules/@angular/compiler/bundles/compiler.umd.js:8321:21)
所以,这听起来像是消息中的情况 1,但我已经尝试了 MdButton
to the imports
property of my NgModule
(which already contained MaterialModule.forRoot()
as adviced by the documentation) 中给出的建议,但如果我这样做了,整个应用程序将在控制台中变为空白而不会出现错误。
这里是一些相关的代码
import { UIRouterModule } from "ui-router-ng2";
import { Ng1ToNg2Module, uiRouterNgUpgrade } from "ui-router-ng1-to-ng2";
import { MaterialModule, MdButton } from '@angular/material';
const upgradeAdapter: UpgradeAdapter = new UpgradeAdapter(
forwardRef(() => XamFlowNg2Module));
uiRouterNgUpgrade.setUpgradeAdapter(upgradeAdapter);
angular.module("xamFlow")
.factory("consoleService",
upgradeAdapter.downgradeNg2Provider(ConsoleService));
/*
* Expose our ng1 content to ng2
*/
upgradeAdapter.upgradeNg1Provider("restService");
@NgModule({
declarations: [
JobComponent,
],
entryComponents: [
// Components that are routed to must be listed here, otherwise you'll get "No Component Factory"
JobComponent,
],
imports: [
CommonModule,
BrowserModule,
FormsModule,
HttpModule,
Ng1ToNg2Module,
MaterialModule.forRoot()
],
providers: [
ConsoleService,
ImageService
]
})
class MyModule { }
upgradeAdapter.bootstrap(document.body, ["myApp"]);
应该是
<button md-button>foo</button>
或
<button md-raised-button>foo</button>
有时,当您向 angular2 添加新组件时,它不会直接注册标签,在这种情况下您必须做两件事:
转到 app.component.ts 文件
- 1) 在"import {component}"中手动插入要添加的按钮
- 2) 在@Component 中注册你的组件并给出路径