gpt4 book ai didi

angular - 使用 ngx-bootstrap modal 将数据传递给 modal

转载 作者:行者123 更新时间:2023-12-03 23:05:56 25 4
gpt4 key购买 nike

我正在使用 angular 8 和 ngx-boostrap 打开模态并将数据从父级传递到模态。但没有按预期工作。我应该怎么做才能让它工作?.. 这是我的 stackblitz演示和代码
HTML

<button type="button" class="btn btn-primary" (click)="openModal(template)">Open modal</button>

<ng-template #template>
<div class="modal-header">
<h4 class="modal-title pull-left">Modal</h4>
<button type="button" class="close pull-right" aria-label="Close" (click)="modalRef.hide()">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="modal-body">
Just a modal with a {{initialState.data1}}
</div>
</ng-template>
成分
openModal(template: TemplateRef<any>) {
const initialState = {
data1 : 'foo'
}
this.modalRef = this.modalService.show(template, {initialState});
}

最佳答案

你可以像这样使用它
HTML

<ng-template #template>
<div class="modal-header">
<h4 class="modal-title pull-left">Modal for data : {{ modalService.config.initialState.data1 }}</h4>
<button type="button" class="close pull-right" aria-label="Close" (click)="modalRef.hide()">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="modal-body">
This is a modal.
</div>
</ng-template>
组件
openModal(template: TemplateRef<any>) {
const user = {
data1 : 'foo'
};
this.modalRef = this.modalService.show(template, {
initialState : user
});
}
而这个在线 DEMO

关于angular - 使用 ngx-bootstrap modal 将数据传递给 modal,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62725266/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com