一般的fetch 用法: fetch("https://example.com/data.json") .then(res => res.json()) .then(data => { console.log(data); }); // 改成async 的 ...
確定! 回上一頁