为了账号安全,请及时绑定邮箱和手机立即绑定

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

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

开满天机 2018-10-18 15:14:48
在react中利用fetch获取数据并渲染到页面该怎么做?分哪几个步骤,
查看完整描述

1 回答

?
不负相思意

TA贡献1777条经验 获得超10个赞

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
    });
  };
}


查看完整回答
反对 回复 2018-11-12
  • 1 回答
  • 0 关注
  • 687 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信