axios.post("/v1/users/reg",v.user).then(function (response) { if(response.data.code == 1){ location.href="/login.html"; }else { alert("失败"); }返回1时不跳转并且自动刷新当前页面
时间: 2024-03-03 14:53:53 浏览: 60
那么你可以将`location.href="/login.html";`改为`window.location.reload();`,这样就可以在返回1时不跳转并且自动刷新当前页面了。修改后的代码如下所示:
```
axios.post("/v1/users/reg",v.user).then(function (response) {
if(response.data.code == 1){
window.location.reload();
}else {
alert("失败");
}
});
```
阅读全文