我有多个函数,调用 fetch():
function FetchData(...) {
(async () => {
...
var res = await fetch(url, {
method: 'POST',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json'
},
body: JSON.stringify({...})
});
...
})();
}
我想通过全局变量(或者更好的是返回值的函数)获取标头,但这还不起作用。
目标是:
function FetchData(...) {
(async () => {
...
var res = await fetch(url, {
method: 'POST',
ReturnHeader(),
body: JSON.stringify({...})
});
...
})();
}
拉丁的传说
相关分类