UrlSegment

UrlSegment

Stable Class

What it does

Represents a single URL segment.

How to use

@Component({templateUrl:'template.html'})
class MyComponent {
  constructor(router: Router) {
    const tree: UrlTree = router.parseUrl('/team;id=33');
    const g: UrlSegmentGroup = tree.root.children[PRIMARY_OUTLET];
    const s: UrlSegment[] = g.segments;
    s[0].path; // returns 'team'
    s[0].parameters; // returns {id: 33}
  }
}

Class Overview

class UrlSegment {
  constructor(path: string, parameters: {[name: string]: string})
  
  
  path : string
  parameters : {[name: string]: string}
  toString() : string
}

Class Description

A UrlSegment is a part of a URL between the two slashes. It contains a path and the matrix parameters associated with the segment.

Constructor

constructor(path: string, parameters: {[name: string]: string})

Class Details

path : string

The path part of a URL segment

parameters : {[name: string]: string}

The matrix parameters associated with a segment

toString() : string

exported from @angular-router-index, defined in @angular/router/src/url_tree.ts

© 2010–2017 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
https://v2.angular.io/docs/ts/latest/api/router/index/UrlSegment-class.html

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部