您的位置 首页 技术专栏

如何解决react link不跳转问题

24小时课堂在线收录如何解决react link不跳转问题,react pnk不跳转的解决办法:1、关闭JS Remotely;2、给根路径route组件增加extra;3、将TouchableOpa…感谢您关注如何解决react link不跳转问题。

react pnk不跳转的解决办法:1、关闭JS Remotely;2、给根路径route组件增加extra;3、将TouchableOpacity作为pnk组件的属性传入即可。

本文操作环境:Windows7系统、react17.0.1、Dell G3。

如何解决react pnk不跳转问题?

react router native:pnk点击不跳转

rn嵌入原生,出现点击TouchableOpacity组件内容没反应、不跳转的情况

// App.jsconst history = createMemoryHistory()<Router history={ history }> <Switch> <Route path=”/” component={ Home }/> <Route path=”/test” component={ Test } /> </Switch></Router>// Home.js<View> <Link to=”/test”> <TouchableOpacity key={ text } style={ styles.wrapper }> <Text style={ styles.text }>{ text }</Text> </TouchableOpacity> </Link></View>

1、关闭JS Remotely

不知为何开了远程调试后导致TouchableOpacity失效。关闭后点击能看到TouchableOpacity效果,仍然不能跳转

2、给根路径route组件增加extra

// App.js<Router history={ history }> <Switch> <Route extra path=”/” component={ Home }/> // 增加extra <Route path=”/test” component={ Test } /> </Switch></Router>

因为不熟悉rn开发,最初担心是使用了createMemoryHistory导致的,后来又担心页面跳转了但是被挡住之类的,思路一直偏了

最后老老实实到github上找了一个基础的项目,一点点找不同,才发现是这个被忽视的问题

原理其实很简单 https://www.cnblogs.com/superpzhao/p/9280122.html

我有这个问题是因为router4.x使用多层嵌套路由报了warning,调整之后反而暴露不认真读原理的问题,惭愧

3、将TouchableOpacity作为pnk组件的属性传入

const pnkParams = { pathname: ‘/star’, state: { data: item },}<Link to={ pnkParams } component={ TouchableOpacity }> <Item text={ item.text } index={ index }/></Link>

<pnk>里面有<TouchableOpacity>会导致不跳转

以上就是如何解决react pnk不跳转问题的详细内容,更多请关注24小时课堂在线其它相关文章!

本文来自网络,不代表24小时课堂在线立场,转载请注明出处:https://www.24ketang.cn/98383.html

为您推荐

返回顶部