当前位置: 首页>>代码示例>>Python>>正文


Python Question.create_question方法代码示例

本文整理汇总了Python中question.Question.create_question方法的典型用法代码示例。如果您正苦于以下问题:Python Question.create_question方法的具体用法?Python Question.create_question怎么用?Python Question.create_question使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在question.Question的用法示例。


在下文中一共展示了Question.create_question方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: jcreate

# 需要导入模块: from question import Question [as 别名]
# 或者: from question.Question import create_question [as 别名]
def jcreate():
    current_app.logger.debug("jcreate. " + str(request.json))
    
    if current_user.id >= 0:
        
        schema = {
                    "type" : "object",
                    "properties" : {            
                        "id" : {"type" : "integer", "maxLength" : 8, "optional" : False},
                        "quizid" : {"type" : "integer", "maxLength" : 8, "optional" : False},
                        "qtext" : {"type" : "string", "maxLength" : 4096, "optional" : False},                        
                        "lat" : {"type" : "number", "maxLength" : 12, "optional" : False},
                        "lon" : {"type" : "number", "maxLength" : 12, "optional" : False},
                        }
                    }
                
        v = Draft4Validator(schema)
        errors = sorted(v.iter_errors(request.json), key = lambda e: e.path)

        if len(errors) == 0:        
        
            qtext = request.json['qtext']
            quiz_id = request.json['quizid']
            latitude = request.json['lat']
            longitude = request.json['lon']

            new_question = Question.create_question(quiz_id, current_user.id,\
                                                   qtext, qtext, latitude, longitude)

            db.session.commit()
                    
            result = {'jstaus' : 'OK', 'id' : new_question.qid}
            return jsonify(result)
        else:
            msg = "Error in json"
            current_app.logger.warning(msg)
            return jsonify({"status" : "ERROR", "message" : msg})
    else:
        msg = "You should be logged in to create a question"
        current_app.logger.warning(msg)
        return jsonify({"status" : "ERROR", "message" : msg})
开发者ID:go13,项目名称:Enigma53,代码行数:43,代码来源:question_bp.py


注:本文中的question.Question.create_question方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。