|
5精币
客户Duan(火狐浏览器)
fetch('http://127.0.0.1:1234', {
method: 'POST',
headers: {
'Content-Type': 'text/plain',
},
body: data,
})
.then(response => response.text())
.then(data => {
console.log(data);
})
.catch((error) => {
console.log(error);
});
服务端(易语言服务器控件)
.子程序 _服务器_数据到达
'这里能够正常接收数据,
局客户 = 服务器.取回客户 ()
服务器.发送数据 (局客户,1, 1)
============================================================浏览器能够正常发送文本被易语言接收,接收完了准备告诉浏览器(回复1),但是报错:同源策略禁止读取位于 http://127.0.0.1:1234/ 的远程资源。(原因:CORS 头缺少 'Access-Control-Allow-Origin')。状态码:200。
求助各位大佬!
|
最佳答案
查看完整内容
协议头设置
Access-Control-Allow-Origin: *
Access-Control-Allow-Methods: GET,PUT,POST,DELETE');
Access-Control-Allow-Headers: Content-Type, Authorization
补充内容 (2024-9-2 18:10):
Access-Control-Allow-Methods: GET,PUT,POST,DELETE 第二行是这个
|