window.location.href 跳到http://192.168.0.191:8081/proxy-zjtmp/web/model时加请求头
时间: 2023-10-02 18:13:49 浏览: 239
window.location.href页面跳转的用法(区别于redirect)
4星 · 用户满意度95%
可以使用XMLHttpRequest对象来实现带请求头的跳转:
```javascript
var xhr = new XMLHttpRequest();
xhr.open("GET", "http://192.168.0.191:8081/proxy-zjtmp/web/model");
xhr.setRequestHeader("header-name", "header-value");
xhr.onreadystatechange = function() {
if(xhr.readyState === 4 && xhr.status === 200) {
window.location.href = xhr.responseURL;
}
};
xhr.send();
```
在上面的代码中,我们使用XMLHttpRequest对象向指定URL发送GET请求,并设置请求头。当请求成功后,我们获取responseURL并将页面跳转到该URL。
阅读全文