1
urlから複数のパラメータを抽出したい。私は親コンポーネント上のリンクは、私はこの角2 - URLから複数の変数を抽出する
をやっている、それぞれのルートファイルで[routerLink]="['/loggedIn','warehouse','move-request',moveRequest.id, 'issued-inventory',issuedInventory.id,'list']"
でパラメータ2
と5
を抽出したい
www.example.com/parent-component/2/list/child-component/5/list
のようなURLがあるとし
{path:':move/issued-inventory',component:IssueInventoryComponent, children : ISSUED_INVENTORY_ROUTES}
子ルートファイルは、私は両方の変数にアクセスしたい次のコンポーネントで
{path:':myid/list',component:ListIssueInventoryComponent},
move
、コンソール上にmyid
this.sub = this.activatedRoute.params.subscribe((params : Params) =>
{
this.moveRequestId = params['move'];
});
moveRequestId
が定義されていないのである 私が間違って何をしているのですか?これらの変数にアクセスするには?
Router Version : "@angular/router": "^3.3.1"
ISSUED_INVENTORY_ROUTESはどのように見えますか? – DeborahK