屏幕无法在本机反应中导航
Posted
技术标签:
【中文标题】屏幕无法在本机反应中导航【英文标题】:Screen not navigating in react native 【发布时间】:2017-02-04 03:44:06 【问题描述】:我在 react native 中编写了这段代码,用于从一个屏幕导航到另一个屏幕,但页面似乎没有导航!我回到同一个启动页面,即使我明确给出了 'id: 2'!
busButtonPress = () =>
this.props.navigator.push(
title: 'Bus',
id: 2
);
对函数的调用似乎很好! 请帮助社区!
【问题讨论】:
发布你的路由器代码 【参考方案1】:尝试关注
busButtonPress = () =>
this.props.navigator.push(
title: 'Bus',
id: '2'
);
【讨论】:
以上是关于屏幕无法在本机反应中导航的主要内容,如果未能解决你的问题,请参考以下文章