|
|
发表于 2020-6-8 10:02:53
|
显示全部楼层
|
var MAX_CYCLES = 3;
var currentCycle = 0;
// 请求函数
var request = (functionId, body = {}) =>
fetch("https://api.m.jd.com/client.action", {
body: `functionId=${functionId}&body=${JSON.stringify(
body
)}&client=wh5&clientVersion=1.0.0`,
headers: {
"content-type": "application/x-www-form-urlencoded",
},
method: "POST",
credentials: "include",
});
console.log(" |
|