在react中利用redux和fetch获取数据并渲染到页面该
发布网友
发布时间:2022-05-14 20:09
我来回答
共1个回答
热心网友
时间:2022-05-14 21:39
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
});
};
}