如何解决react link不跳转问题

文章2022-02-16189 人已阅来源:网络

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

如何解决react 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不跳转问题的详细内容!