热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

mobx的store中获取数据如果获取成功将跳转路由,但是store中无法使用this.props

问题描述mobx的store中有一个获取token的request,如果获取成功将跳转路由至/,但是store中无法使用this.props.history.pus

问题描述

mobx的store中有一个获取token的request,如果获取成功将跳转路由至'/',但是store中无法使用this.props.history.push('/')




问题出现的环境背景及自己尝试过哪些方法

尝试加一个state存储登录与否,但是不太好,有没有直接解决的方法?

相关代码

// 请把代码文本粘贴到下方(请勿用图片代替代码)
class IssueStore {



1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
@observable open_list = []

@observable item = ''

@observable isLogin = false

@observable username = ''

@observable password = ''

@observable table_loading =true

@computed get fullName() {

    const { firstName, lastName } = this;

    if (!firstName && !lastName) {

        return "Please input your name!";

    } else {

        return firstName + " " + lastName;

    }

}

@computed get loginStatus(){

    return loginStatus=this.isLogin;

}

@action queryToken() {

    NewRequest.request({

        form: {

            "username": this.username,

            "password": this.password

        },

        url: BaseUrl+'/api/api-token-auth/',

        success: function (res) {

            let str = JSON.parse(res);

            NewRequest.setStorage('token', str.token);

            NewRequest.setStorage('username',this.username );

            this.isLogin=true

        }.bind(this),

        error: function () {

            message.error('信息错误,请重新登录!');

        }.bind(this)

    })

}

@action queryOpenList() {

    NewRequest.request({

        user_method: 'List_open',

        url: BaseUrl + '/api/issue/',

        success: function (res) {

            var obj = JSON.parse(res);

            this.open_list=obj;

            this.table_loading=false;

        }.bind(this),

        error: function (res) {

            if(res.status==='401'){

            }

           

        }.bind(this)

    })

}

}

你期待的结果是什么?实际看到的错误信息又是什么?

希望能够直接在上面这个queryToken函数里直接进行路由跳转。


   



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