美文网首页
报错local variable 'usermobile' re

报错local variable 'usermobile' re

作者: 会飞的闰土 | 来源:发表于2018-02-12 22:54 被阅读0次
    代码如下:
    @api.route('/mobilereg', methods=['POST'])
    def mobileCode():
        mobile = request.get_data("mobile")
        try:
            usermobile = User.query.filter_by(mobile=mobile).first()
        except Exception as e:
            current_app.logger.error(e)
    
        if usermobile:
            return {
                "errno": RET.DATAEXIST,
                "errmsg": "该手机号已被注册"
            }
    return {
        "errno": RET.OK,
        "errmsg": "可以注册"
    }
    

    定义全局变量 usermobile
    在代码中赋值前加入 global usermobile

    相关文章

      网友评论

          本文标题:报错local variable 'usermobile' re

          本文链接:https://www.haomeiwen.com/subject/cridtftx.html