我想在OAuthComponent
组件中显示GettingStartedPage
。提供给我的浏览器时OAuthComponent
没有显示。没有错误。
OAuthComponent.ts
import {Page, NavController} from 'ionic/ionic';
import {Component} from 'angular2/angular2'
@Component({
templateUrl: "app/authentication/components/oauth-component.html",
selector: "oauth-component"
})
export class OAuthComponent {
private nav: NavController;
constructor(nav: NavController) {
this.nav = nav;
}
}
oauth-component.html
<h1>
Testing Something
</h1>
GettingStartedPage.ts
import {Page, NavController} from 'ionic/ionic';
import {OAuthComponent} from "../authentication/components/OAuthComponent";
import "./getting-started.scss";
@Page({
templateUrl: 'app/getting-started/getting-started.html',
directives: [OAuthComponent]
})
export class GettingStartedPage {
private nav: NavController;
constructor(nav: NavController) {
this.nav = nav;
}
}
getting-started.html
<ion-navbar *navbar>
<a menu-toggle>
<icon menu></icon>
</a>
<ion-title>Getting Started</ion-title>
</ion-navbar>
<ion-content>
<main>
<oauth-component></oauth-component>
</main>
</ion-content>
答案 0 :(得分:9)
Angular2中的所有组件都必须引用视图中显示的其他组件。
Ionic似乎使用他们自己的@Page
注释来处理这个问题,但它只涵盖了Ionic特定的组件。 decorators.ts解释了这种行为。
您需要修改代码,以便在OAuthComponent
中包含directives
:
@Page({
templateUrl: 'app/getting-started/getting-started.html',
directives: [OAuthComponent] // Don't forget to import it
})
export class GettingStartedPage {