文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php教程>如何解决react link不跳转问题

如何解决react link不跳转问题

时间:2021-12-02  来源:互联网

今天PHP爱好者为您带来react link不跳转的解决办法:1、关闭JS Remotely;2、给根路径route组件增加extra;3、将TouchableOpacity作为link组件的属性传入即可。希望对大家有所帮助。

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

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

react router native:link点击不跳转

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

// App.js
const 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/superlizhao/p/9280122.html

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

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

const linkParams = {
   pathname: '/star',
   state: { data: item },
}

<Link to={ linkParams } component={ TouchableOpacity }>
   <Item text={ item.text } index={ index }/>
</Link>

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

以上就是如何解决react link不跳转问题的详细内容,更多请关注php爱好者其它相关文章!

相关阅读更多 +
最近更新
排行榜 更多 +
元梦之星最新版手游

元梦之星最新版手游

棋牌卡牌 下载
我自为道安卓版

我自为道安卓版

角色扮演 下载
一剑斩仙

一剑斩仙

角色扮演 下载