我应该如何向Tastypie发出信号,告诉我无法创建资源?

时间:2013-10-08 16:23:01

标签: tastypie

当我在Tastypie中实现自己的obj_create()时,失败的正确方法是什么(因为我知道超出了一些配额)?我想有一个标准的例外,但我不知道哪一个。

1 个答案:

答案 0 :(得分:0)

使用ImmediateHttpResponse tastypie.http(来自Django)子类之一提升HttpResponse例外。

from tastypie.exceptions import ImmediateHttpResponse
from tastypie.http import HttpSeeOther

...
    raise ImmediateHttpResponse(HttpSeeOther())