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