纯前端跨域实现方案,PC、APP端浏览器皆支持

纯前端跨域实现方案,PC、APP端浏览器皆支持-独行
纯前端跨域实现方案,PC、APP端浏览器皆支持
此内容为付费阅读,请付费后查看
5
立即购买
您当前未登录!建议登陆后购买,可保存购买订单
付费阅读

Image description 三网大流量卡(正规、非野路子、非物联网卡) – 运营商App可查,点击办理

跨域需使用油猴插件,拦截GET、POST等请求,跨域访问后返回

一、前端代码示例:

const onClick = async () => {
  fetch('http://www.xdishuge.net/search/', {
    method: "POST",
    headers: {
      "Content-Type": "application/x-www-form-urlencoded"
    }, // 设置请求头
    mode: 'no-cors',
    cache: "default",
    redirect: 'follow',
    body: "searchkey=遮天"
  })
    .then(response => response.text())
    .then(result => {
      console.log(result);
    })
    .catch(error => console.error(error));
};

const onClick3 = async () => {
  fetch('https://www.baidu.com/', {
    method: "GET",
    headers: {
      'content-type': 'text/html'
    }, // 设置请求头
    mode: 'no-cors',
    cache: "default",
    redirect: 'follow',
  })
    .then(response => response.text())
    .then(result => {
      console.log(result);
    })
    .catch(error => console.error(error));
};

油猴代码:

Image description 三网大流量卡(正规、非野路子、非物联网卡) – 运营商App可查,点击办理

© 版权声明
THE END
喜欢就支持一下吧
点赞0 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容