路由到具有不同参数的相同网址后,页面上的数据未更新

时间:2019-04-16 11:35:21

标签: angular routes router angular-resolver

基本上,我有一个通知组件,该组件在单击标题中的图标时显示通知。当我们单击标题上的图标时,它将打开一个弹出窗口并显示通知列表。单击任何一个通知后,它会将用户路由到该特定通知的组件,就像单击通知时一样,它将用户带到该路由:profile / guest / {guestid} / alerts / {alertid}。但是,当我们从上述路由中单击另一个通知时,它会更改路由参数,但不会重新加载新警报的数据,而仅显示旧路由的数据。

注意:显示的数据是从路由解析中获取的。并且由于该组件已经加载,因此当我们单击另一个通知时,它不会调用ngOnInit或构造函数。但是,当我们刷新页面时,它会根据更新的路线显示正确的数据。

我尝试实现不同的路由器配置解决方案,以重新加载解析数据。例如runGuardsAndResolvers和onSameUrlNavigation。

我还尝试在其他角度组件生命周期挂钩(例如ngAfterViewInit或ngAfterViewChecked)中调用设置数据的函数。

我尝试了更多解决方案,但是所有这些都没有用。

 Notification.component.ts :-(inside header component in shared module)
/**
   * * Callback when user clicks on visit button in notification modal
   * @param notification : notification 
   */
  navigateToGuestOrCustomer(notification: notification) {
    let routePath =
      notification.model == ALERT_MODEL.GUEST ? "guest" : "customers";
    let routeParamId = notification.detail_id;
    let alertId = notification.id;
    this.router.navigate([`/profile/${routePath}/${routeParamId}/alerts/${alertId}`]);
  }


edit-alert.component.ts(inside profile module in guest component>alert component)

  ngOnInit() {
    this.fetchRouteData();
    this.setGuestId();
    this.setGuestName();
  }

  /**
   * * get guest name from route resolve
   */
  setGuestName(): void {
    let guestData = this.route.parent.snapshot.data["editGuestInfo"];
    this.guestName = guestData["name"];
  }

  formData: any;
  alertListForGuest = [];
  /**Fetch Data from Resolve */
  fetchRouteData() {
    this.formData = this.route.snapshot.data["alertDetailForGuest"];
    this.alertListForGuest = this.route.snapshot.data["alertListForGuest"];
    this.alertListForGuest.push(this.formData.alert);
  }

预期结果:单击其他通知后,路由参数应更改并显示具有更新数据的所需页面。

实际结果:仅更改路由,而不更改数据。

2 个答案:

答案 0 :(得分:1)

如果仅更改路由,但未重新创建组件,则可能不会再次调用

ngOnInit。 您应该订阅路由更改并在那里执行获取和更新逻辑

import { ActivatedRoute } from '@angular/router`
constructor(private activatedRoute : ActivatedRoute){  }

ngOnInit() {
    this.activatedRoute.url.subscribe(url =>{
        // Code to get the new notification data 
        // and display it
    });
}

通过这种方式,当您导航到新的URL时,代码将再次执行

答案 1 :(得分:0)

您说过刷新页面后会显示新数据,因此在这种情况下,只需尝试在同一页面上实现Route Reload,以便它将重新加载当前路由并为您获取新的路由数据。