标签: javascript reactjs redux ecmascript-next
我有多个减速器,如何使用连接?用户只是其中之一。
@connect(state=>state.user, {getUser1}) class MyApp extends React.Component { }
答案 0 :(得分:3)
只需包含状态的其他部分并将其返回到对象
@connect(state=>({user: state.user, other: state.other}))