14

我有这个调用函数的动作:

dispatch(Api({url: "my_url", method: "POST", data: data}))

在这里,我将数组作为数据传递..

import fetch from 'isomorphic-fetch'

export default function Api({url, method, headers, data}={}){
    return dispatch => {

        console.log(data)
        console.log(url)
        console.log(method)
        console.log(JSON.stringify(data))
        let response = fetch(url, {
            mode: 'no-cors',
            method: method || null,
            body: data || null, 
        }).then(function(response) {
            console.log("response");
             console.log(response)
            });

    }
}

我在这里使用fetchmode:'no-cors'想我正在传递所有的争论。我的身体是简单的数组,我作为争论传递..

当我看到回复时,就像:

body: null
bodyUsed: false
headers: Headers
ok: false
status: 0
statusText: ""
type: "opaque"
url:""

在这里我的身体没有被使用..

这里有什么问题?需要帮忙

4

1 回答 1

28

你得到一个opaque response[ 1 ] [ 2 ],因为你正在使用 fetch with mode: 'no-cors'. 您需要使用mode: 'cors'并且服务器需要发送所需的 CORS 标头 [ 3 ] 才能访问响应。

于 2016-02-09T12:11:57.333 回答