使用routeParams提取网址中的参数时:
https://asdfgh.com/#qwer/search?input1=ZXCV&input2=BNM
$routeParams.input1
和$routeParams.input2
效果很好,但在某些情况下,在html网页上发布网址时,&对&
的更改如下:
https://asdfgh.com/#qwer/search?input1=ZXCV&input2=BNM
然后$routeParams.input2
获取null
。
我的解决方案是什么?