我们在url中传递的参数带有加号+,会被浏览器转换成空格,这样导致传参错误
解决办法是使用 encodeURIComponent 方法给参数进行转码
例如:
var name = ”a+b”;
window.location.href = "/index?name=" + encodeURIComponent(name);