gpt4 book ai didi

angular - 为 Angular 6 中的有效守卫抛出的 NavigationCancel 事件

转载 作者:太空狗 更新时间:2023-10-29 17:23:49 24 4
gpt4 key购买 nike

在导航到提供的状态的过程中,我遇到了 Angular 路由器的问题。

我曾尝试使用带有 canLoad()canActivate() 函数的自定义守卫将 bool 值返回为 true,但没有任何运气。

Angular docs说明如下:

NavigationCancel: An event triggered when navigation is canceled. This is due to a Route Guard returning false during navigation.

因为我没有从路由器跟踪中获得更多调试信息(没有给出原因),我不得不在这里检查是否有修复,或者这是一个现有的错误。我也很感激有关在 Angular 6 中调试路由器的其他方法的任何信息。

控制台输出

console output

我在 here 中创建了一个小项目.该项目需要访问提供者,我正在使用 angular-oauth2-oidc 存储库中提供的 OpenID Connect 提供者。密码/用户名是 max/geheim。

如何重现错误

  1. 克隆 repo 并在 localhost:4200 提供站点
  2. 转到 localhost:4200/oversikt/index
  3. 使用 max/geheim 作为用户名/密码登录
  4. 阅读控制台

更新我怀疑它与导航到 children: [] 路线有关。

最佳答案

我在你的代码中做了一些调试,我发现这不是因为链接、auth guard、导航声明或模块配置,也不是 AG6 中的路由器蜂鸣,而是因为……您正在使用的 OAuth 库

但让我解释一下。我发现正在发生以下情况:

  1. 您登录并被重定向回页面
  2. 您使用类似/#YOUR AUT TOKEN 的链接返回应用程序
  3. 已安排第一次导航(id 1)
  4. 导航导致重定向到子页面/oversikt
  5. 弹出导航2(重定向)
  6. 路由器以异步方式执行所有操作——它们是序列化的,但仍然很难使用 RxJS——因此实际处理被延迟了——它已将当前导航 ID 作为参数传递(这很重要)
  7. 一些监听器和其他订阅以及您正在使用的 OAUTH 库中的内容会触发
  8. 它 (lib) 检测到您的 url 中有 token 并将其删除
  9. 这会触发另一个重定向 - 路由 ID 立即增加到 3
  10. 现在导航 2 继续并在某个时候(记住 JS 是单线程的)它会检查(id 会做很多)导航开始时的导航 id 是否已更改或仍然相同。
  11. 因为它有变化 - id 2 在计划时间传递,当前导航是 3,单个 false 传播到整个管道和路由器中的订阅
  12. boolean(甚至不是 false,而是 bool)作为管道中的值会导致无故取消导航。

我将添加一些代码引用。但总的来说,这就是正在发生的事情。您的 oauth 库在导航期间修改了 url,这导致它被取消。 guard 与直截了当的方式无关。

所以一般来说 - 它不会像守卫那样因为“访问被拒绝”而被取消,而是因为必须执行新的导航而被取消,所以它被取消短路了。

这里是(不是全部)相关代码:

OAuth 库修改

   if (!this.oidc) {
this.eventsSubject.next(new OAuthSuccessEvent('token_received'));
if (this.clearHashAfterLogin && !options.preventClearHashAfterLogin) {
location.hash = '';
}
return Promise.resolve();
}

导航在 url 更改时触发:

 Router.prototype.setUpLocationChangeListener = function () {
var _this = this;
// Don't need to use Zone.wrap any more, because zone.js
// already patch onPopState, so location change callback will
// run into ngZone
if (!this.locationSubscription) {
this.locationSubscription = this.location.subscribe(function (change) {
var rawUrlTree = _this.parseUrl(change['url']);
var source = change['type'] === 'popstate' ? 'popstate' : 'hashchange';
if(this.rou)
var state = change.state && change.state.navigationId ?
{ navigationId: change.state.navigationId } :
null;
setTimeout(function () { console.error("FROM LOCATION SUB");_this.scheduleNavigation(rawUrlTree, source, state, { replaceUrl: true }); }, 0);
});
}
};

导航 ID 修改 - 立即发生:

   var id = ++this.navigationId;
console.error("ANOTHER SCHEDULED LOL LOL LOL!!!");
this.navigations.next({ id: id, source: source, state: state, rawUrl: rawUrl, extras: extras, resolve: resolve, reject: reject, promise: promise });
// Make sure that the error is propagated even though `processNavigations` catch
// handler does not rethrow
return promise.catch(function (e) { return Promise.reject(e); });

这是传递给路由器以启动“异步”路由的内容 - id 是导航 id(之前递增)

 Router.prototype.runNavigate = function (url, rawUrl, skipLocationChange, replaceUrl, id, precreatedState) {

此检查(它在 runNav 中)首先失败,因为 id 已更改,因此 2!==3 - FALSE 返回到管道

var preactivationCheckGuards$ = preactivationSetup$.pipe(mergeMap(function (p) {
if (typeof p === 'boolean' || _this.navigationId !== id) //NAVIGATION ID CHANGES HERE!
{
console.warn("PREACTIVATE GUARD CHECK ");
console.log(p);
// debugger;
return of(false);
}

chain 中还有几个订阅,它们都有一些管道映射等以及已知的条件检查。

 var preactivationResolveData$ = preactivationCheckGuards$.pipe(mergeMap(function (p) {
if (typeof p === 'boolean' || _this.navigationId !== id)
return of(false);

请注意,这是我之前写的,如果你在这里得到任何 booean,就会向前推 false。因为我们这里已经有 false 因为在之前的管道映射中检查失败....

终于在链的末端

    if (typeof p === 'boolean' || !p.shouldActivate || id !== _this.navigationId || !p.state) {
// debugger;
navigationIsSuccessful = false;
return;
}

结果标志设置为 false,结果为

 .then(function () {
if (navigationIsSuccessful) {
_this.navigated = true;
_this.lastSuccessfulId = id;
_this.events
.next(new NavigationEnd(id, _this.serializeUrl(url), _this.serializeUrl(_this.currentUrlTree)));
resolvePromise(true);
}
else {
_this.resetUrlToCurrentUrlTree();
_this.events
.next(new NavigationCancel(id, _this.serializeUrl(url), ''));
resolvePromise(false);
}

NavigationCancel 没有任何您熟悉的消息(最后一个参数是消息 - 此处为空字符串):)。

我花了很多时间,因为我不知道 Angular 内部结构 + 那些该死的管道......到处都是管道。

至于文档

NavigationCancel: An event triggered when navigation is canceled. This is due to a Route Guard returning false during navigation.

好吧,他们忘了提到内部路由器可以取消导航,因为导航队列正在建立:)

干杯!

关于angular - 为 Angular 6 中的有效守卫抛出的 NavigationCancel 事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52747999/

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