的python-密码验证/自定义响应
作者:互联网
是否有任何在Deliciouspie中使用APIKey身份验证的示例.所提供的示例并未真正详细介绍其工作方式.
另外,我一直在浏览食谱,试图找到在哪里可以返回帖子中自定义消息的钩子.
例如,某人发布帖子尝试创建用户,但该用户已存在.在我的hydrate_user(自己,捆绑包)中:我相信我会进行检查,但是如何返回有用的错误消息?
解决方法:
您可以这样操作:
from tastypie.exceptions import ImmediateHttpResponse
from tastypie.http import HttpBadRequest
if test_fails:
raise ImmediateHttpResponse(HttpBadRequest("User already exists"))
标签:rest,tastypie,python,django 来源: https://codeday.me/bug/20191208/2087675.html