删除AngularJS中的querystring

前端之家收集整理的这篇文章主要介绍了删除AngularJS中的querystring前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
例如,从URL读取和处理查询字符串值后
http://myurl.com/#/?foo=baa

我可以更改URL

http://myurl.com/#/?foo=

通过使用

$location.search('myQueryStringParameter','');

如何完全摆脱查询字符串(没有显式的重定向或服务器端的操作等等),以便只有这样

http://myurl.com/#/

留在浏览器中?它应该是相当简单的,但我找不到任何参考。

尝试这个:
$location.url($location.path())

有关详细信息,请参阅documentation

猜你在找的Angularjs相关文章