操作:
PhoneNumberField
减速器:
PhoneNumberField
组件:
export const filesDownload = postData => (dispatch) => {
console.log(postData);
fetch(`http://${ip}:8000/api/v1/integrator/email/need_attachment/`, {
method: 'POST',
headers: {
'content-type': 'application/json',
},
body: JSON.stringify(postData),
})
.then(res => console.log(res.json()))
.then(files =>
dispatch({
type: GET_FILES,
payload: files,
}));
};
上面是我的代码,我想访问API的响应,该API是我在组件中执行的操作,然后再次设置状态,以便可以显示获得的数据。
我是Redux的新手,请抽出一点时间来帮助大家。