在路线角4

时间:2017-05-02 20:36:40

标签: angular angular2-routing

您好我想通过angular 4中的路由传递一些参数

APP-routing.module.ts

import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';

import { StartGameComponent } from './start-game/start-game.component';
import { GameComponent } from './game/game.component';


const appRoutes: Routes = [
  { path: '', redirectTo: '/first', pathMatch: 'full' },
  { path: 'startGame', component: StartGameComponent },
  {path: 'game/:width/:height',component: GameComponent
  }

];

@NgModule({
  imports: [RouterModule.forRoot(appRoutes)],
  exports: [RouterModule]
})
export class AppRoutingModule {

}
组件 StartGameComponent

中的

      goToGameComponent(width:string,height:string){
      this.router.navigate(['game', {width:width,height:height}]);
}
组件 GameComponent

中的

 ngOnInit() {
        this.route.params.forEach((urlParams) => {
          this.width= urlParams['width'];
          this.height=urlParams['height'];

        });
app.component.html

中的

<div>
  <md-toolbar color="primary">
    <span>MineSweeper Wix</span>

  </md-toolbar>
  <router-outlet></router-outlet>

  <span class="done">
    <button md-fab>
      <md-icon>check circle</md-icon>
    </button>
  </span>
</div>

它引发了我的错误

  

无法匹配任何路线。网址细分:'游戏;宽度= 10;高度= 10'

2 个答案:

答案 0 :(得分:32)

您正在将所需路由参数的语法与可选路由参数混合使用。

Angular提供三种类型的路由参数: 1)所需参数。 2)可选参数。 3)查询参数。

必需参数用于所需值,例如显示详细信息页面的ID。是否需要宽度和高度?

可选参数适用于并非总是需要的值,例如将输入的搜索条件传递到应使用该条件的列表页面。

查询参数与可选参数类似,但您可以跨路径保留它们。因此,如果您想要在某处返回,可以保留参数。

必需参数在路由配置中定义。可选和查询参数包含在路由配置中(因此路径只是'游戏')

设置参数的语法因类型而异:

必填参数:this.router.navigate(['game', width, height]);

可选参数:this.router.navigate(['game', {width:width,height:height}]);

查询参数:this.router.navigate(['game', { queryParams: {width:width, height:height}}])

有关详情,请查看:https://app.pluralsight.com/library/courses/angular-routing/table-of-contents

答案 1 :(得分:0)

我需要传递动态构造它们的多个查询参数。因此,请执行以下步骤以实现相同的目的:

例如,

const arrayItem = [{ source: "external" }, { fileFiler: "File Name 1" }];
const queryParams = arrayItem.reduce((arrObj, item) => Object.assign(arrObj, item, {}));  // this will convert into single object. 

// Output: {source: "external", fileFiler: "File Name 1"}

最后调用下一行将其传递给路由:

this.router.navigate([], { relativeTo: this.activatedRoute, queryParams });

希望这会有所帮助!