【已解决】Flask-restful中想要使用marshal格式化enum变量
crifan 8年前 (2016-10-21) 4393浏览 0评论
对于: task_fields = { ‘id’: fields.String, ‘promotionCode’ : fields.String, ‘hasF...
服务器相关的技术
crifan 8年前 (2016-10-21) 4393浏览 0评论
对于: task_fields = { ‘id’: fields.String, ‘promotionCode’ : fields.String, ‘hasF...
crifan 8年前 (2016-10-21) 5948浏览 0评论
想要在Flask去使用Http的错误码, 不想要直接写400,表示bad request 而想要试用别处已经定义好的http的状态码 搜: Flask Bad Request Application Errors — Flask Documentat...
crifan 8年前 (2016-10-20) 7192浏览 0评论
Flask-Restful的api,运行出错: DEBUG in Task [/root/RunningFast/staging/runningfast/resources/Task.py:63]: self=<runningfast.r...
crifan 8年前 (2016-10-20) 5539浏览 0评论
已有Flask-restful的api定义: class TaskAPI(Resource): decorators = [login_required] def get(self, userId, taskId): ...
crifan 8年前 (2016-10-20) 3456浏览 0评论
在: 【已解决】Flask中SQLAlchemy出错:AmbiguousForeignKeysError: Could not determine join condition between parent/child tables on relat...
crifan 8年前 (2016-10-20) 6446浏览 0评论
Flask程序错误的log: ...
crifan 8年前 (2016-10-20) 5320浏览 0评论
flask reqparse 枚举 flask reqparse 枚举 python – Nested validation with the flask-restful RequestParser – Stack Overf...
crifan 8年前 (2016-10-20) 6238浏览 0评论
在Flask中使用SQLAlchemy去创建对应的数据库表的对象 然后去flush: newInitiatorStartLocation = Location(longitude=initiatorStartLocation[...
crifan 8年前 (2016-10-18) 9552浏览 0评论
之前其实已经对于Flask中的SQLAlchemy中的多对多的关系, 其中涉及到: relationship ForeignKey backref 但是其实不是真正深入的了解了。 现在遇到一个数据库建表时,又遇到类似情况 有个复杂的关系 一个User...
crifan 8年前 (2016-10-17) 4808浏览 0评论
之前已经实现了基本的Flask-restful的项目 但是目前的结构是: 更多的代码,暂时只能放在views.py中 希望优化结构 python – Flask-RESTful Project Structure – Sta...