私はハイブリッドAngular1とAngular2のアプリケーションを持っています。私が経路指定しているAngular2コンポーネントの1つでは、Material Design Buttonを使用したいと考えています。私はこの<md-button>foo</md-button>
のようにテンプレートにボタンを挿入するとAngular2の素材設計コンポーネント「既知の要素ではありません」
アプリケーションは、したがって、このコンソールメッセージ
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>"): [email protected]:12
at TemplateParser.parse (http://localhost:3000/node_modules/@angular/compiler/bundles/compiler.umd.js:8321:21)
でクラッシュを開始し、それがメッセージにケース1であるようにそれが聞こえるかもしれないが、私はアドバイスを試してみましたthis answerで与えられたのimports
のプロパティに(これは既にthe documentationがアドバイスされているMaterialModule.forRoot()
が含まれています)を追加しますが、そうした場合、アプリケーション全体がエラーなしでコンソールに表示されます。ここで
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"]);
ルート '@NgModule()'の 'imports:[...]'に 'MaterialModule.forRoot()、'を追加しましたか(https://github.com/angular/material2/blob/ fcc5900e496adc5b11e47ad1e6d3e0c2ac2bad9e/GETTING_STARTED.md)? –
関連コードを表示してください。 – micronyks
@GünterZöchbauerでした。 –