1

这是我routerCanDeactivate在弃用的路由器中使用的方式:

import { CanDeactivate, ComponentInstruction } from '@angular/router-deprecated';

export class CallComponent implements CanDeactivate {
  routerCanDeactivate(next: ComponentInstruction, prev: ComponentInstruction) {
    // ...
  }
}

如何做与ngrx/router相同的事情?我没有找到任何文件。

谢谢

4

1 回答 1

0

所以现在,ngrx/router中没有这样的功能。我在 GitHub 上创建了一个问题,你可以在这里跟踪它。

https://github.com/ngrx/router/issues/127

于 2016-06-06T18:24:19.460 回答