async function getResponseSize(url) { const response = await fetch(url); const reader = response.body.getReader(); let total = 0; while ...
確定! 回上一頁