我正在使用ng2-bootstrap作为模态内容。
我试图将我的模态和其他组件分开。所以我有以下文件:
addPlaylist.modal.ts
import {Component} from '@angular/core';
import {CORE_DIRECTIVES} from '@angular/common';
import {MODAL_DIRECTVES, BS_VIEW_PROVIDERS} from 'ng2-bootstrap/ng2-bootstrap';
@Component({
selector: 'addplaylist-modal',
directives: [MODAL_DIRECTVES, CORE_DIRECTIVES],
viewProviders: [BS_VIEW_PROVIDERS],
templateUrl: 'app/channel/modals/addPlaylistModal.html'
})
export class AddPlaylistModalComponent {
constructor() {
console.log(this);
}
}
addPlaylistModal.html
<div bsModal #lgModal="bs-modal" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="myLargeModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" (click)="lgModal.hide()" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
<h4 class="modal-title">Large modal</h4>
</div>
<div class="modal-body">
...
</div>
</div>
</div>
</div>
在它的父组件的HTML中我有这样的代码片段:
<a (click)="lgModal.show()"><span class="bigplus pull-right"></span></a>
//some other code
<addplaylist-modal></addplaylist-modal>
这是父组件: 的 channel.component.ts
import { AddPlaylistModalComponent } from './shared/addPlaylist.modal';
@Component({
selector: 'channel',
styleUrls: ['app/channel/channel.css'],
directives: [PlatformsComponent, PagesComponent, PlaylistComponent, VideosComponent, AddPlaylistModalComponent],
providers: [PlatformService],
templateUrl: 'app/channel/channel.html'
})
我想做什么,我希望能够让父组件访问它并打开模态,即使我写了(click)=&#34; lgModal.show()&#34;在父组件。
现在,如果我点击<a (click)="lgModal.show()"><span class="bigplus pull-right"></span></a>
,它会说“无法读取未定义的属性显示&#34;
那么,如何让父组件知道lgModal已定义并且它已在其子组件中。
答案 0 :(得分:11)
您的解决方案可能如下所示:
<强> ChildComponent 强>
@Component({
...
exportAs: 'child' <== add this line
})
export class AddPlaylistModalComponent {
@ViewChild('lgModal') lgModal; <== reference to Modal directive
show(){ <== public method
this.lgModal.show();
}
}
<强>为父级强>
template: `<a class="btn btn-success" (click)="c.show()">Add</a>
<addplaylist-modal #c="child"></addplaylist-modal>`
另请参阅此处的完整示例https://plnkr.co/edit/2UAB7lpqqAvchTsLwzr6?p=preview