在react中利用redux和fetch获取数据并渲染到页面?
1 回答
陪伴而非守候
TA贡献1757条经验 获得超8个赞
actions:
export const getMenu = () => {
return async (dispatch) => {
let msg = await fetch('data/nodes',{
method: 'POST',
//body: JSON.stringify({"aa":"aa"}),
header: {'content-type':'application/json; charset=utf-8'}
}).then((res)=>res.json());
var state = { nodes: msg };
dispatch({
type: 'INIT',
state
});
};
}
- 1 回答
- 0 关注
- 1583 浏览
添加回答
举报
0/150
提交
取消