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

溫馨提示×

溫馨提示×

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

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

Angular刷新當前頁面的方法

發布時間:2021-04-09 09:44:16 來源:億速云 閱讀:239 作者:小新 欄目:web開發

這篇文章主要介紹Angular刷新當前頁面的方法,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

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


默認,當收到導航到當前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等。

相關教程推薦:《angular教程》

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

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}

2、修改組件代碼,改為從resolve中獲取數據

constructor(private heroService: HeroService, private route: ActivatedRoute) {
}

ngOnInit() {  this.route.data.subscribe((data: { heroes: Hero[] }) => {    this.heroes = data.heroes;
  });
}

3、配置onSameUrlNavigation為'reload'

4、配置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();
    }
  });
}

以上是“Angular刷新當前頁面的方法”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

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

AI

浙江省| 平度市| 东山县| 嘉义县| 兰西县| 遂昌县| 金华市| 桂林市| 林芝县| 陕西省| 普格县| 石门县| 桃园市| 固镇县| 靖远县| 靖西县| 财经| 石台县| 长顺县| 龙井市| 拉孜县| 诸暨市| 交口县| 普陀区| 喀喇沁旗| 锦屏县| 凤翔县| 麻栗坡县| 嘉义市| 陕西省| 加查县| 石阡县| 瓮安县| 武城县| 故城县| 深州市| 榕江县| 金乡县| 清水河县| 合作市| 宣威市|