我正在研究角度6。
我的网址就像
http://localhost:4200/login?param1=123¶m2=abc
这是在其他浏览器中,如chrome,firefox和IE 10和11。
但是对于IE 9,我们需要与hash一起路由。所以它就像
http://localhost:4200/login#/login?param1=123¶m2=abc
我无法从此处获取查询参数。
答案 0 :(得分:0)
答案中没有那么多的设置/代码信息,但我想你必须激活角度项目中的哈希值。请参阅下面的代码,并在有用/有用时通知我。
此模式称为hashlocationstrategy(官方文档)
示例代码:
@NgModule({
imports: [
...
...
RouterModule.forRoot(routes, { useHash: true }) // .../#/crisis-center/
],
...
})
export class AppModule { }