当我在Tastypie中实现自己的obj_create()时,失败的正确方法是什么(因为我知道超出了一些配额)?我想有一个标准的例外,但我不知道哪一个。
答案 0 :(得分:0)
使用ImmediateHttpResponse
tastypie.http
(来自Django)子类之一提升HttpResponse
例外。
from tastypie.exceptions import ImmediateHttpResponse
from tastypie.http import HttpSeeOther
...
raise ImmediateHttpResponse(HttpSeeOther())