有人可以帮助我在React-native中成为新手吗,我已经搜索了整个网络,但无法解决
Jobs: {
screen:ACWebView ,
params:{url:`${this.props.rootUrl}referrals`},
navigationOptions: {
tabBarIcon: ({ tintColor }) => (
<ACIcon name='briefcase' style={[{color: tintColor, fontSize: 20}]} />
),
},
},
这是我的mapstatetoprops函数
function mapStateToProps(state) {
let currentInstitute = getCurrentInstitute(state);
return {
navState: state.nav,
rootUrl: currentInstitute.get('root_url')
};
}
导出默认的connect(mapStateToProps)(ACRouter);
这是我的工作屏幕,它将打开一个Web视图,我必须访问包含URL的道具我应该怎么做