我有多个函数,调用 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({...}) }); ... })();}
1 回答
拉丁的传说
TA贡献1789条经验 获得超8个赞
在属性值中调用该函数。
function FetchData(...) {
(async () => {
...
var res = await fetch(url, {
method: 'POST',
headers: ReturnHeader(),
body: JSON.stringify({...})
});
...
})();
}
添加回答
举报
0/150
提交
取消