使用fetch()方法获取html数据

时间:2018-06-13 07:28:27

标签: javascript async-await fetch-api

我希望使用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)
    })

0 个答案:

没有答案