私はこのライブラリhttps://github.com/dougludlow/ng2-bs3-modalを使って角2でモーダルを作成しています。 私のアプリケーションにはモーダルが必要ですが、別のコンポーネントが必要です。 例:角度2で別のコンポーネントとしてモーダルを作成するにはどうすればよいですか?
a.component.htmlはボタンでrepresentatedさ:
<button type="button" class="btn btn-default" (click)="modal.open()">Open me!</button>
とb.component.htmlがモーダルで表されます。
<modal #modal>
<modal-header>
<h4 class="modal-title">I'm a modal!</h4>
</modal-header>
<modal-body>
Hello World!
</modal-body>
<modal-footer>
<button type="button" class="btn btn-default" data-dismiss="modal" (click)="modal.dismiss()">Cancel</button>
<button type="button" class="btn btn-primary" (click)="modal.close()">Ok</button>
</modal-footer>
</modal>
は、私は何を書くべきts? あなたはplunkrで私を助けてもらえますか? 感謝:)
http://stackoverflow.com/questions/36566698/how-to -dynamically-create-bootstrap-modal-angular2-components – echonax