最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - React Navigation, how to go back to specific screens? - Stack Overflow

programmeradmin2浏览0评论

I'm using react-navigation:^1.0.0-beta.9 is there a way to go back to specific screen (not the previous one to the current)? I've also integrated my react-navigation with redux. I've looked into the documentation and saw that back accepts a key param however this is unclear to me and tried placing in the name of the Screen like back({ key: 'Screen B' }) but it doesn't work probably because it's expecting a key which is randomly generated unless specified specifically.

For example I have this StackNavigator

Screen A
- Screen B
  - Screen C
    - Screen D (Current)

Let's say I am currently on Screen D and I wanted to go back to Screen B how would I achieve it?

I don't want to use navigation.navigate('Screen B') because that's gonna add another screen to the stack and not what I'm expecting.

I'm using react-navigation:^1.0.0-beta.9 is there a way to go back to specific screen (not the previous one to the current)? I've also integrated my react-navigation with redux. I've looked into the documentation and saw that back accepts a key param however this is unclear to me and tried placing in the name of the Screen like back({ key: 'Screen B' }) but it doesn't work probably because it's expecting a key which is randomly generated unless specified specifically.

For example I have this StackNavigator

Screen A
- Screen B
  - Screen C
    - Screen D (Current)

Let's say I am currently on Screen D and I wanted to go back to Screen B how would I achieve it?

I don't want to use navigation.navigate('Screen B') because that's gonna add another screen to the stack and not what I'm expecting.

Share Improve this question edited Jun 12, 2017 at 11:13 JohnnyQ asked Jun 12, 2017 at 2:45 JohnnyQJohnnyQ 5,1276 gold badges52 silver badges65 bronze badges 2
  • I find out that you can use this.props.navigation.goBack("keyOfC"), if you want go to B use keyOfC. It has to be key not route name. BTW, I don't know how to set the key manually. – KimHau Commented Jun 12, 2017 at 7:46
  • @KimHau yeah I noticed that too. But that key is randomly generated I believe. – JohnnyQ Commented Jun 12, 2017 at 8:22
Add a ment  | 

1 Answer 1

Reset to default 15

1.Inside screen D dispatch some action:

    const {navigation} = this.props;
    navigation.dispatch({
        routeName: 'B',
        type: 'GoToRoute',
    });

2.Handle this action in MyStackNavigator.js

const MyStackNavigator = new StackNavigator(//...);
const defaultGetStateForAction = MyStackNavigator.router.getStateForAction;
MyStackNavigator.router.getStateForAction = (action, state) => {            
    if (state && action.type === 'GoToRoute') {           
        let index = state.routes.findIndex((item) => {
            return item.routeName === action.routeName
        });
        const routes = state.routes.slice(0, index+1);
        return {
            routes,
            index
        };    
    }       
    return defaultGetStateForAction(action, state);
};

and then you can go from screen D to screen B directly

发布评论

评论列表(0)

  1. 暂无评论