当使用 routeParams 提取 url 中的参数时,例如:
https://asdfgh.com/#qwer/search?input1=ZXCV&input2=BNM
by $routeParams.input1
and$routeParams.input2
效果很好,但是在某些情况下,在 html 页面中发布 URL 时, & 更改为&
like:
https://asdfgh.com/#qwer/search?input1=ZXCV&input2=BNM
然后$routeParams.input2
获取null
.
我的解决方案是什么?