gpt4 book ai didi

javascript - [ng-bootstrap] : Passing function to a modal threw a service

转载 作者:行者123 更新时间:2023-12-03 00:47:22 26 4
gpt4 key购买 nike

我已经创建了一个调用我的不同模式的服务。所以我有一个模态调用“Confirm Modal”,它可以接受 3 个参数:一个确认函数、一个拒绝函数和一个主体。这是以下模式:

export class ConfirmModalComponent implements OnInit {
@Output() acceptFunc;
@Output() refuseFunc?;
@Input() body: string;
constructor(public activeModal: NgbActiveModal) {}

ngOnInit() {}

async confirmModal() {
await this.acceptFunc;
this.closeModal();
}

async refuseModal() {
if (this.refuseFunc) await this.refuseFunc();
this.closeModal();
}

closeModal() {
this.activeModal.close('Modal Closed');
}
}

在我的模态服务中,我创建以下函数来打开此模态

openConfirmModal(accept: <P = any>(props?: P) => void, body: string,         refuse?: <P = any>(props?: P) => void): NgbModalRef {
const modalRef = this.modalService.open(ConfirmModalComponent, { size: 'lg' });
modalRef.componentInstance.accept = accept;
if (refuse) modalRef.componentInstance.refuse = refuse;
modalRef.componentInstance.body = body;
return modalRef;
}

`

我按如下方式调用此函数:

openConfirmModal() {
this.modalService.openConfirmModal(this.myFunc.bind(this), 'Test')
}

myFunc() {
console.log('Work !');
}

问题是我的函数 myFunc 从未被调用,那么如何通过服务将函数从组件传递到我的模态?

最佳答案

在您的ConfirmModalComponent上,您没有调用带括号的方法,请更改

async confirmModal() {
await this.acceptFunc;
this.closeModal();
}

async confirmModal() {
await this.acceptFunc();
this.closeModal();
}

在 openConfirmModal 方法中,您定义的函数名称与您在组件上使用的函数名称不同,请更改这两行

modalRef.componentInstance.accept = accept;
if (refuse) modalRef.componentInstance.refuse = refuse;

modalRef.componentInstance.acceptFunc = accept;
if (refuse) modalRef.componentInstance.refuseFunc = refuse;

关于javascript - [ng-bootstrap] : Passing function to a modal threw a service,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53190381/

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