91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Angular刷新當前頁面的幾種方法

發布時間:2020-06-05 13:03:35 來源:網絡 閱讀:14679 作者:川川Jason 欄目:web開發

默認,當收到導航到當前URL的請求,Angular路由器會忽略。

<a routerLink="/heroes" routerLinkActive="active">Heroes</a>

重復點擊同一鏈接頁面不會刷新。

從Angular 5.1起提供onSameUrlNavigation屬性,支持重新加載路由。

@NgModule({
  imports: [RouterModule.forRoot(routes, {onSameUrlNavigation: 'reload'})],
  exports: [RouterModule]
})

onSameUrlNavigation有兩個可選值:'reload'和'ignore',默認為'ignore'。但僅將onSameUrlNavigation改為'reload',只會觸發RouterEvent事件,頁面是不會重新加載的,還需配合其它方法。在繼續之前,我們啟用Router Trace,從瀏覽器控制臺查看一下路由事件日志:

@NgModule({
  imports: [RouterModule.forRoot(routes, {onSameUrlNavigation: 'reload', enableTracing: true})],
  exports: [RouterModule]
})

可以看到,未配置onSameUrlNavigation時,再次點擊同一鏈接不會輸出日志,配置onSameUrlNavigation為'reload'后,會輸出日志,其中包含的事件有:NavigationStart、RoutesRecognized、GuardsCheckStart、GuardsCheckEnd、ActivationEnd、NavigationEnd等。

下面介紹刷新當前頁面的幾種方法:

NavigationEnd

  1. 配置onSameUrlNavigation為'reload'
  2. 監聽NavigationEnd事件

訂閱Router Event,在NavigationEnd中重新加載數據,銷毀組件時取消訂閱:

export class HeroesComponent implements OnDestroy {
  heroes: Hero[];
  navigationSubscription;

  constructor(private heroService: HeroService, private router: Router) {
    this.navigationSubscription = this.router.events.subscribe((event: any) => {
      if (event instanceof NavigationEnd) {
        this.init();
      }
    });
  }

  init() {
    this.getHeroes();
  }

  ngOnDestroy() {
    if (this.navigationSubscription) {
      this.navigationSubscription.unsubscribe();
    }
  }
  ...
}

這種方式可按需配置要刷新的頁面,但代碼煩瑣。

RouteReuseStrategy

  1. 配置onSameUrlNavigation為'reload'
  2. 自定義RouteReuseStrategy,不重用Route

有兩種實現方式:
在代碼中更改策略:

constructor(private heroService: HeroService, private router: Router) {
  this.router.routeReuseStrategy.shouldReuseRoute = function () {
    return false;
  };
}

Angular應用Router為單例對象,因此使用這種方式,在一個組件中更改策略后會影響其他組件,但從瀏覽器刷新頁面后Router會重新初始化,容易造成混亂,不推薦使用。

自定義RouteReuseStrategy:

import {ActivatedRouteSnapshot, DetachedRouteHandle, RouteReuseStrategy} from '@angular/router';

export class CustomReuseStrategy implements RouteReuseStrategy {

  shouldDetach(route: ActivatedRouteSnapshot): boolean {
    return false;
  }

  store(route: ActivatedRouteSnapshot, handle: DetachedRouteHandle | null): void {
  }

  shouldAttach(route: ActivatedRouteSnapshot): boolean {
    return false;
  }

  retrieve(route: ActivatedRouteSnapshot): DetachedRouteHandle | null {
    return null;
  }

  shouldReuseRoute(future: ActivatedRouteSnapshot, curr: ActivatedRouteSnapshot): boolean {
    return false;
  }

}

使用自定義RouteReuseStrategy:

@NgModule({
  imports: [RouterModule.forRoot(routes, {onSameUrlNavigation: 'reload'})],
  exports: [RouterModule],
  providers: [
    {provide: RouteReuseStrategy, useClass: CustomReuseStrategy}
  ]
})

這種方式可以實現較為復雜的Route重用策略。

Resolve

使用Resolve可以預先從服務器上獲取數據,這樣在路由激活前數據已準備好。

  1. 實現ResolverService

將組件中的初始化代碼轉移到Resolve中:

import {Injectable} from '@angular/core';
import {ActivatedRouteSnapshot, Resolve, RouterStateSnapshot} from '@angular/router';
import {Observable} from 'rxjs';

import {HeroService} from '../hero.service';
import {Hero} from '../hero';

@Injectable({
  providedIn: 'root',
})
export class HeroesResolverService implements Resolve<Hero[]> {
  constructor(private heroService: HeroService) {
  }

  resolve(route: ActivatedRouteSnapshot, state: RouterStateSnapshot): Observable<Hero[]> | Observable<never> {
    return this.heroService.getHeroes();
  }
}

為路由配置resolve:

path: 'heroes', component: HeroesComponent, canActivate: [CanActivateAuthGuard], resolve: {heroes: HeroesResolverService}
  1. 修改組件代碼,改為從resolve中獲取數據
constructor(private heroService: HeroService, private route: ActivatedRoute) {
}

ngOnInit() {
  this.route.data.subscribe((data: { heroes: Hero[] }) => {
    this.heroes = data.heroes;
  });
}
  1. 配置onSameUrlNavigation為'reload'
  2. 配置runGuardsAndResolvers為‘always’

runGuardsAndResolvers可選值:'paramsChange' 、'paramsOrQueryParamsChange'、'always'

{path: 'heroes', component: HeroesComponent, canActivate: [CanActivateAuthGuard], resolve: {heroes: HeroesResolverService}, runGuardsAndResolvers: 'always'}

時間戳

給Router增加時間參數:

<a (click)="gotoHeroes()">Heroes</a>
constructor(private router: Router) {
}

gotoHeroes() {
  this.router.navigate(['/heroes'], {
    queryParams: {refresh: new Date().getTime()}
  });
}

然后在組件中訂閱queryParamMap:

constructor(private heroService: HeroService, private route: ActivatedRoute) {
  this.route.queryParamMap.subscribe(params => {
    if (params.get('refresh')) {
      this.init();
    }
  });
}

2018廣州馬拉松
Angular刷新當前頁面的幾種方法

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

鹿邑县| 炉霍县| 黔江区| 富裕县| 黄梅县| 依兰县| 北海市| 黑龙江省| 南木林县| 涡阳县| 宜州市| 湟源县| 定南县| 旬邑县| 家居| 罗源县| 罗甸县| 星座| 辽宁省| 寻乌县| 林口县| 龙海市| 阿拉善右旗| 齐齐哈尔市| 建瓯市| 磐石市| 额敏县| 柞水县| 慈利县| 揭西县| 津市市| 镇赉县| 定南县| 台中市| 闸北区| 千阳县| 长治市| 长乐市| 平安县| 大同县| 砀山县|