在React应用程序中获取-如何使用不透明的响应

时间:2018-10-24 16:03:36

标签: javascript node.js reactjs fetch-api

我是React和JS的新手,试图从我的React组件中的服务获取数据,但是什么也没进来:

  fetch("http://localhost:9000/someEndPoint", 
    {
      method: "GET",
      mode: "no-cors",
      credentials: "same-origin",
      cache: "no-cache",
      headers: {
        "Accept" : "application/json; charset=utf-8",
        "Content-Type" : "application/json; charset=utf-8"
      }
    })
    .then((response) => {
        if (!response.ok) {
            throw Error(response.statusText);
        }

        return response.json();
    })
    .then((b) => {

      console.log(b);
    })
    .catch((error) => {
        console.log(error);
    });

更新:由于没有cors模式,我得到的响应是不透明的,您知道如何处理吗?

0 个答案:

没有答案