我需要在表单中有任何未保存的数据时停止路由。
constructor(public router: Router, public modalService: ModalService) {
router.events.subscribe((event) => {
if (event instanceof NavigationStart) {
if (!this.submitted && this.itemDataForm.dirty) {
router.events[`isStopped`] = true;
router.events[`closed`] = true;
modalService.open(this.confirmationModal);
}
}
});
}
预期结果:停止当前导航