我在Mac OS设备上运行我的项目,我想从另一台笔记本电脑访问。
第一个设备也从服务器获取所有响应:
但另一台笔记本电脑我收到此错误消息:
Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at http://www.shadyab.com/api/Api/coupons. (Reason: missing token ‘access-control-allow-origin’ in CORS header ‘Access-Control-Allow-Headers’ from CORS preflight channel).
const requestOptions = {
method: 'POST',
headers: { 'Content-Type': 'multipart/form-data',
'Access-Control-Allow-Origin': '*'},
body: JSON.stringify(formData)
};
答案 0 :(得分:0)
添加
headers: {'Access-Control-Allow-Origin': '*'}
从您的服务器获取API的服务器