使用打包为exe的pyinstaller进行pythonweb之后,某些页面报告404

时间:2019-04-15 02:34:40

标签: python reactjs flask pyinstaller

用pyinstaller打包到exe后,我的应用程序出现问题,我可能找到了问题,当react的接口函数包含另一个接口时,将报告错误,否则将不会报告。像这样反应代码:

editUser() {
        console.log("获取到编辑的数据", this.state.addForm);
        userEdit(this.state.addForm).then((res) => {
            if (res.data.result === 1) {
                this.state.formData.data.map((index, i) => {
                    if (index.id === this.state.rowId) {
                        this.state.formData.data.splice(i, 1);
                        this.state.formData.data.push(this.state.addForm);
                        this.setState({visible: false});
                        this.props.form.resetFields(); // 编辑完清空表单
                    }
                });
                message.success('用户信息修改成功!');
                this.viewInfo()  <----- I guess problem these
            } else {
                message.error('用户信息修改失败!')
            }
        })
    }

0 个答案:

没有答案