
获得徽章 7
- ## 破产了
async function getData() {
const url =
"api.juejin.cn";
const stream = await fetch(url, {
method: "POST",
credentials: "include",
body: JSON.stringify({})
});
const res = await stream.json();
return res;
}
while (true) {
const res = await getData();
console.log(res.data.lottery_name);
}展开赞过31