3
親コンポーネントテンプレートに子コンポーネントテンプレートを読み込みたい。 (私は子供と親それらを呼び出すより良い言葉遣いの欠如のため)Angular2:動作していないディレクティブを介して外部コンポーネントを他のコンポーネントに注入
これは私の子である:
import {Component,Directive, ElementRef, Input} from '@angular/core';
import {IONIC_DIRECTIVES} from 'ionic-angular';
@Component({
selector: '[parentselector]',
template: '<div>I AM A CHILD</div>',
directives: [IONIC_DIRECTIVES]
})
export class ChildPage {
constructor() {
}
}
これは私の親です:
@Component({
templateUrl: 'build/pages/parent/parent.html',
directives: [ChildPage]
})
と親のHTML:
<ion-content>
<ion-slides>
<ion-slide><parentselector>Parent To Be Overriden</parentselector>
</ion-slide>
</ion-slides>
</ion-content>
どのようなアイデアが間違っていますか?
する必要があります!ありがとう! – nottinhill