处理响应 - SyntaxError:使用模式时意外结束输入:'no-cors'

IT技术 javascript json reactjs cors fetch-api
2021-01-29 01:11:44

我尝试了对 REST-API 的 ReactJS fetch 调用并想处理响应。通话有效,我得到了回应,我可以在 Chrome 开发工具中看到:

function getAllCourses() {
fetch('http://localhost:8080/course', {
    method: 'POST',
    mode: 'no-cors',
    credentials: 'same-origin',
    headers: {
        'Accept': 'application/json',
        'Content-Type': 'application/json',
    },
    body: JSON.stringify({
        objectClass: 'course',
        crud: '2'
    })
}).then(function (response) {
    console.log(response);
    return response.json();

}).catch(function (err) {
    console.log(err)
});
}

当我尝试处理响应时,我在

return response.json();

console.log 看起来像这样:

控制台日志(响应)

我的响应 JSON 看起来像这样,它是有效的,我用 jsonlint 进行了检查:

[
  {
    "0x1": {
      "users": [],
      "lectures": [],
      "owner": "0x2",
      "title": "WWI 14 SEA",
      "description": null,
      "objectClass": "course",
      "id": "course_00001"
    },
    "0x2": {
      "username": "system",
      "lectures": [],
      "course": null,
      "solutions": [],
      "exercises": [],
      "roles": [
        "0x3",
        "0x4",
        "0x5"
      ],
      "objectClass": "user",
      "id": "user_00001"
    },
    "0x3": {
      "roleName": "ROLE_ADMIN",
      "objectClass": "role",
      "id": "role_00001"
    },
    "0x4": {
      "roleName": "ROLE_STUDENT",
      "objectClass": "role",
      "id": "role_00002"
    },
    "0x5": {
      "roleName": "ROLE_DOCENT",
      "objectClass": "role",
      "id": "role_00003"
    }
  }
]
5个回答

您需要mode: 'no-cors'从请求中删除该设置。设置no-cors模式正是您遇到问题的原因。

no-cors请求做出react类型opaque问题中的日志片段显示了这一点。不透明意味着您的前端 JavaScript 代码无法看到响应正文或标头。

https://developer.mozilla.org/en-US/docs/Web/API/Request/mode解释:

no-cors — JavaScript 可能无法访问结果的任何属性 Response

所以设置no-cors模式的作用本质上是告诉浏览器,“在任何情况下都不要让前端 JavaScript 代码访问响应体或头。”

我想您正在尝试no-cors是因为来自的响应http://localhost:8080/course不包含Access-Control-Allow-Origin响应标头,或者因为您的请求是触发CORS 预检的请求,因此您的浏览器会进行OPTIONS预检。

但是使用no-cors模式并不能解决这些问题。解决方法是:

在 django localhost 服务器安装的情况下,github.com/ottoyiu/django-cors-headers设置 settings.pyCORS_ORIGIN_ALLOW_ALL = True用于开发目的。
2021-03-14 01:11:44
感谢@sideshowbarker 的洞察力!但是,在我的情况下,即使在我删除了之后mode,它也被设置为默认值(cors因为我正在发送一个Request),但是当响应是 时ok: false,我仍然进入unexpected end of json inputPromise
2021-03-14 01:11:44

在您中,then您应该在返回之前检查响应是否正常response.json

.then(function (response) {
    if (!response.ok) {
        return Promise.reject('some reason');
    }

    return response.json();

})

如果您想在被拒绝的Promise中包含错误消息,您可以执行以下操作:

.then(function (response) {
    if (!response.ok) {
       return response.text().then(result => Promise.reject(new Error(result)));
    }

    return response.json();
})
您的要求可能会因各种原因,你可以使用响应API来找出原因:developer.mozilla.org/en-US/docs/Web/API/Response/Response 日志response.statusresponse.statusText等等。将打印错误消息。您的 JSON 很好,是客户端找不到您的服务器。您还可以打开浏览器控制台以获取有用的消息。
2021-03-13 01:11:44
谢谢,但就我而言,这没有帮助。我想知道为什么它不起作用?我的 JSON 无效吗?为什么我的回复不正常?
2021-03-29 01:11:44

我知道这个答案可能太晚了,可能已经解决了,但我今天遇到了同样的问题,我只需要在标题散列的末尾添加一个“,”,我就不再收到错误了

export function addContacts(formData) {
  return(dispatch) => {
    dispatch({type: 'POSTING_CONTACTS'});
    console.log(formData)
    return fetch(uri, {
      method: 'POST',
      body: JSON.stringify({contact: {name: formData.name, phone_number: formData.phoneNumber}}),
      headers: {
        Accept: 'application/json',
        'Content-Type': 'application/json'
      },
    })
    .then(response => {
        return response.json()
      }).then(responseJSON => {
        console.log(responseJSON)
        return dispatch({type: 'ADD_CONTACT', payload: responseJSON});
      })
  }
}     

您可以通过在 php 或其他服务器端点的标题中添加行来避免 CORS 策略的问题:

<?php
header('Access-Control-Allow-Origin: *');
//or
header('Access-Control-Allow-Origin: http://example.com');

// Reading JSON POST using PHP
$json = file_get_contents('php://input');
$jsonObj = json_decode($json);

// Use $jsonObj
print_r($jsonObj->message);

...
// End php
?>

使用 POST 请求获取代码的工作模型是:

const data = {
        optPost: 'myAPI',
        message: 'We make a research of fetch'
    };
const endpoint = 'http://example.com/php/phpGetPost.php';

fetch(endpoint, {
    method: 'POST',
    body: JSON.stringify(data)
})
.then((resp) => resp.json())
.then(function(response) {
    console.info('fetch()', response);
    return response;
});

只需复制以下代码并将其粘贴到标签web.config文件中即可<system.webServer>

<httpProtocol>  
    <customHeaders>  
     <add name="Access-Control-Allow-Origin" value="*" />  
     <add name="Access-Control-Allow-Headers" value="Content-Type" />  
     <add name="Access-Control-Allow-Methods" value="GET, POST, PUT, DELETE, OPTIONS" />  
    </customHeaders>  
  </httpProtocol>