在react中利用redux和fetch获取数据并渲染到页面?

在react中利用redux和fetch获取数据并渲染到页面?

函数式编程
浏览 1584回答 1
1回答

陪伴而非守候

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});};}
打开App,查看更多内容
随时随地看视频慕课网APP