當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript Location.path方法代碼示例

本文整理匯總了TypeScript中@angular/common.Location.path方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript Location.path方法的具體用法?TypeScript Location.path怎麽用?TypeScript Location.path使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在@angular/common.Location的用法示例。


在下文中一共展示了Location.path方法的10個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: ga

 this._router.events.filter((event) => event instanceof NavigationEnd).subscribe(() => {
   ga('send', {hitType: 'pageview', page: this._location.path()});
 });
開發者ID:Quinn-L,項目名稱:ng-bootstrap,代碼行數:3,代碼來源:analytics.ts

示例2: page

 get page() {
     return this.location.path().split('/')[1];
 }
開發者ID:Geoffrey-T,項目名稱:angular2-bootstrap4-oauth2-webpack,代碼行數:3,代碼來源:navbar.ts

示例3: ga

					.subscribe(() => {
						ga('send', {hitType: 'pageview', page: this._location.path()});
					});
開發者ID:ManigandanRaamanathan,項目名稱:react-native-ui-kitten,代碼行數:3,代碼來源:analytics.service.ts

示例4: isActiveMainItem

 isActiveMainItem(path) {
     return this.location.path().indexOf(path.toLowerCase()) !== -1;
 }
開發者ID:richardsonlima,項目名稱:SMSC,代碼行數:3,代碼來源:active.ts

示例5: assertUrl

 function assertUrl(path: any /** TODO #9100 */) { expect(location.path()).toEqual(path); }
開發者ID:BharatBhatiya,項目名稱:test,代碼行數:1,代碼來源:location_spec.ts

示例6: ga

 this.router.events.filter((event: any) => event instanceof NavigationEnd).subscribe(() => {
   if (typeof ga !== 'undefined') {
     ga('send', { hitType: 'pageview', page: this.location.path() });
   }
 });
開發者ID:OlegDubrovskyi,項目名稱:ngx-bootstrap,代碼行數:5,代碼來源:analytics.ts

示例7: fakeAsync

 fakeAsync(inject([Router, Location], (router: Router, location: Location) => {
   TestBed.createComponent(MyApp);
   router.navigateByUrl('/about');
   tick();
   expect(location.path()).toEqual('/about');
 })
開發者ID:edicon,項目名稱:angular2typescript,代碼行數:6,代碼來源:app.spec.ts

示例8: expect

 router.navigateByUrl('/').then(() => {
   expect(location.path()).toBe('/tasks');
   done();
 }).catch(e => done.fail(e));
開發者ID:Jabirfayyaz,項目名稱:learning-angular2,代碼行數:4,代碼來源:app.component.spec.ts

示例9: isActive

 isActive(path) {
   return this.location.path().startsWith(path);
 }
開發者ID:krupa310,項目名稱:md2,代碼行數:3,代碼來源:app.ts

示例10:

 return state$ => state$.do(s => {
     if (s.router.init && (s.router.navigating || s.router.url !== location.path())) {
       router.navigateByUrl(s.router.url);
     }
   });
開發者ID:NathanWalker,項目名稱:ngrx-store-router,代碼行數:5,代碼來源:middleware.ts


注:本文中的@angular/common.Location.path方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。