我希望使用fetch()
方法接收html数据。
下面是我的异步函数,问题是控制台不打印响应。
浏览器的网络选项卡虽然显示请求已完成状态代码200
有没有办法访问text()属性?或操纵这些数据?
const fetchHTML = async () => {
const response = await fetch('https://developer.mozilla.org/en-US/', {
headers: {
'content-type': 'text/html'
},
mode: 'no-cors'
})
const text = await response.text()
return text
}
fetchHTML().then((text) => {
console.log(text)
}).catch((err) => {
console.log(err)
})