我有这个调用函数的动作:
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)
});
}
}
我在这里使用fetch
我mode:'no-cors'
想我正在传递所有的争论。我的身体是简单的数组,我作为争论传递..
当我看到回复时,就像:
body: null
bodyUsed: false
headers: Headers
ok: false
status: 0
statusText: ""
type: "opaque"
url:""
在这里我的身体没有被使用..
这里有什么问题?需要帮忙