使用useHash获取角度为6的查询参数为IE 9

时间:2018-06-09 06:53:20

标签: angular6

我正在研究角度6。

我的网址就像

http://localhost:4200/login?param1=123&param2=abc

这是在其他浏览器中,如chrome,firefox和IE 10和11。

但是对于IE 9,我们需要与hash一起路由。所以它就像

http://localhost:4200/login#/login?param1=123&param2=abc

我无法从此处获取查询参数。

1 个答案:

答案 0 :(得分:0)

答案中没有那么多的设置/代码信息,但我想你必须激活角度项目中的哈希值。请参阅下面的代码,并在有用/有用时通知我。

此模式称为hashlocationstrategy(官方文档)

示例代码: @NgModule({ imports: [ ... ... RouterModule.forRoot(routes, { useHash: true }) // .../#/crisis-center/ ], ... }) export class AppModule { }