热门标签 | HotTags
当前位置:  开发笔记 > 后端 > 正文

ReactNative状态使用Redux控制,怎么根据状态判断执行Navigator跳转

场景是一个登录,判断状态执行Navigator跳转

场景是一个登录,判断状态执行Navigator跳转



问题是,跳转后 页面会重复跳转至少两次,不知道哪里写错了。

1
2
3
4
5
6
7
8
9
10
11
12
13
    shouldComponentUpdate(nextProps, nextState){



        if(nextProps.user.isLoggedIn != this.props.isLoggedIn && nextProps.user.isLoggedIn == true) {

            this.props.router.toAccount();

            return false;

        }

       

        if(nextProps.loginStatus == 'doing' || nextProps.loginStatus == 'error' || nextProps.loginStatus == 'done') {

            return false;

        }



        return true;

    }



   



推荐阅读
author-avatar
小岳不在家
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有