fetch到的reponse.body怎么使用


const response = await fetch("remote_url");

const text = await response.text();
//or
const json = await response.json();

以上两个方法用于或者文本/JSON两种情况

你可能感兴趣的:(fetch到的reponse.body怎么使用)