Skip to content

fetch

访问网络。

const response = await fetch('https://www.baima.site/');
const text = await response.text();

console.log(text);

天下大吉