我有一个canDeactivate
应该返回true
或返回的函数false
。这可以通过调用openConfirmDialog()
函数的结果来确定,该函数会打开 ngx-bootstrap 模态“确认”对话框并等待用户响应(可能导致true
或false
)。这是代码:
canDeactivate(component: ComponentCanDeactivate): boolean | Observable<boolean> {
// if there are no pending changes, just allow deactivation; else confirm first
return component.canDeactivate() ?
true :
this.openConfirmDialog();
}
openConfirmDialog() {
this.modalRef = this.modalService.show(ConfirmationComponent);
return this.modalRef.content.onClose.subscribe(result => {
console.log('results', result);
})
}
从result
订阅到this.modalRef.content.onClose
正在工作。我可以成功登录true
或false
. 当结果变为要么true
或false
虽然,我如何返回 true
或false
作为值canDeactivate
?还是我错过了重点,我应该以不同的方式做事吗?
我的ConfirmationComponent
看起来像这样,它定义onClose
为Observable<boolean>
(特别是 a Subject<boolean>
),所以我可以成功返回一个布尔可观察对象,但是我如何让我canDeactivate
的返回true
或false
何时openConfirmDialog
收到 or 的true
值false
?
@Component({
templateUrl: './confirmation.component.html'
})
export class ConfirmationComponent {
public onClose: Subject<boolean>;
constructor(private _bsModalRef: BsModalRef) {
}
public ngOnInit(): void {
this.onClose = new Subject();
}
public onConfirm(): void {
this.onClose.next(true);
this._bsModalRef.hide();
}
public onCancel(): void {
this.onClose.next(false);
this._bsModalRef.hide();
}
}