nihgwu/react-native-dva-starter

怎么使用 withRef 。

liliangzdh opened this issue · 0 comments

1.正常的是这样的。(ts文件)
@connect((state: stateStore,) => {
return {app: state.app}
})

使用其他方式可以

  1. function mapStateToProps(state: stateStore) {
    return {
    app: state.app
    };
    }
    export default connect(mapStateToProps,null, null,{withRef:true})(Notice);

2.或者使用这样的也可以。
const mapdata = { withRef: true,};
@connect(
null ,
null,
null,
mapdata,
)

现在的问题来了。要使用 被connect的主键。 withRef 怎么加上去。用正常的?