fetch(
"请求地址",
{
method:'POST',
headers: {
"Content-Type": "application/json"
},
body:new Array("59fc72e384aee8b82df5e614","59fc72e384aee8b82df5e615")
}
).then((res)=>{
if(res.ok){
res.text().then((data)=>{
console.log(data)
})
}
}).catch((res)=>{
console.log(res);
});
body 这里想传递一个数组该怎么写呢?