美文网首页
JS使用fetch解决JS跨域问题——no-cors

JS使用fetch解决JS跨域问题——no-cors

作者: 生命不止运动不息 | 来源:发表于2023-06-21 21:35 被阅读0次

js请求时,如果是不同域名的请求,就会跨域。

解决方案: 添加mode: "no-cors"

示例如下:

<script>
      fetch('https://ok.166.net/gameyw-misc/opd/squash/20210226/134206-krb0sf3j14.mp4', {
        method: 'get',
        mode: "no-cors",   //防止跨域
        responseType: 'blob'  
      })
      .then(res => res.blob())
      .then(res => {
        const src = URL.createObjectURL(res); 
        document.querySelector('video').src = src;
      })
  </script>

相关文章

网友评论

      本文标题:JS使用fetch解决JS跨域问题——no-cors

      本文链接:https://www.haomeiwen.com/subject/xqlpydtx.html