named pipe tcp proxy怎么跟crt联动
4 回答
qq_笑_17
TA贡献1818条经验 获得超7个赞
可能是你的action没有connect到组件上,没有把这个方法传过来。 参考我写的一个方案 @connect( state =; state, dispatch =; bindActionCreators(action, dispatch) ) 2.根据redux文档的方案 // 哪些 action 创建函数是我们想要通过 props 获取
慕村225694
TA贡献1880条经验 获得超4个赞
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
});
};
}
- 4 回答
- 0 关注
- 1190 浏览
添加回答
举报
0/150
提交
取消