4 回答
慕容森
TA贡献1853条经验 获得超18个赞
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
});
};
}
繁华开满天机
TA贡献1816条经验 获得超4个赞
react为什么在github上很火爆,不就是因为他比其他框架优越很多吗,Facebook团队看不上别人开发的js引擎,所以自己开发了这一款,并且和angular一起被誉为下一代web技术,岂是Arttemplate能比的,也许从简单页面的速度上来说,Arttemplate可能给人的感觉是速度切换的快,但是在中端和高端web中,react的速度优势就很明显了,你想想Facebook的用户有多少,能支持这么多用户的js引擎,绝对不会差
添加回答
举报
0/150
提交
取消