const response = await fetch("remote_url");
const text = await response.text();
//or
const json = await response.json();
以上两个方法用于或者文本/JSON两种情况
const response = await fetch("remote_url");
const text = await response.text();
//or
const json = await response.json();
以上两个方法用于或者文本/JSON两种情况
本文标题:fetch到的<ReadableStream>rep
本文链接:https://www.haomeiwen.com/subject/xwfuhqtx.html
网友评论