三网大流量卡(正规、非野路子、非物联网卡) – 运营商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));
};
油猴代码:
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
暂无评论内容