我发送了一个帖子请求,我得到了这样的回复
“ [符号(响应内部)]:{ url:'https://login.somenewloginpage'}”
我想做的是我想通过该网址打开一个新页面,但它不会定向到新页面。
const login= () => async () => {
const api = `somePostRequest`
fetch(api, {
method: 'post',
headers: {
'Content-Type': 'application/x-www-form-url-encoded',
Accept: 'application/json',
},
})
.then(function(res) {
return res //maybe I should do something in this part...
})
.then(data => console.log(data));
};
12345678_0001
相关分类