中的所有示例
Angular Bootstrap's Modals
有一个外部按钮来触发模式本身。
在我的例子中,我使用的是一个图表,它有一个函数
nodeClicked(event, node)
.
在函数中,我检查用户是否按下
CTRL键
按钮,同时单击节点。如果没有,我需要触发一个模式,说明没有单击按钮。
组成部分html
<ng-template #content let-c="close" let-d="dismiss">
<div class="modal-header">
<h4 class="modal-title">Warning</h4>
<button type="button" class="close" aria-label="Close" (click)="d('Cross click')">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<p>NO <kbd>CTRL</kbd> Button Pressed.</p>
<p>If previous Selection were selected using Multiselect Feature, they will be deleted.</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-outline-dark" (click)="c('Close click')">Close</button>
</div>
</ng-template>
在
nodeClicked()
功能:
组成部分ts
constructor (modal: NgbModal) {}
....
nodeClicked(ev, node) {
if (ev.control) {
//perform necessary stuff
}
else {
this.modal.open() // here according to API I need to pass content.
// but I already have mentioned that in `modal-body`
}
}
如何在不实际通过
content
中的字符串
this.model.open()
方法调用?