我有一个与我的BlogItem模型一起使用的线程mptt评论模型:
class MyComment(MPTTModel, Comment):
parent = TreeForeignKey('self', null=True, blank=True, related_name='children')
class MPTTMeta:
order_insertion_by=['-submit_date']
class Meta:
ordering=['tree_id','lft']
对于tastypie我做了资源
class MyCommentResource(ModelResource):
# i tried to use this commented strings (and of course i created related resources)
#comment = fields.ForeignKey(CommentRosource, 'comment', null=True, full=True)
#site = fields.ForeignKey(SiteResource, 'site', null=True, full=True)
#content_type = fields.ForeignKey(ContentTypeResource, 'content_type', null=True, full=True)
#children = fields.ToManyField('self', 'children', null=True, full=True)
#content_object = GenericForeignKeyField({BlogItem: BlogItemResource}, 'content_object', null=True, full=True)
class Meta:
queryset = MyComment.objects.filter(level=0)
resource_name = 'myComment'
include_resource_uri = False
allowed_methods = ['get', 'post', 'put']
include_resource_uri = False
filtering = {
'object_pk': ALL,
'level': ALL
}
authorization= Authorization()
之后我对MyComment模型的GET请求有工作api(我可以看到所有评论(评论者姓名,评论文本,mptt级别,分页等)
但是当我尝试制作curl(或js)erquest:
curl --dump-header - -H "Content-Type: application/json" -X POST --data '{"comment":"sdfsdfsdf"}' http://myhostname.com:80/api/v1/myComment/ > /tmp/err.html
我收到错误“当前事务已中止,命令被忽略,直到事务块结束”或其他错误(“/NoExist at / api / v1 / myComment /无异常提供”,“无法分配无:”MyComment.content_type“不允许空值。“ - 但在请求中我发布POST {”content_type“:{”id“:”15“}}或链接到我的api中的content_type也很有用。)
对于其他更简单的模型(没有通用关系,但使用ForeignKeys)我可以发出curl请求并获得“201创建”响应,所以我认为我有与“通用”评论模型相关的错误
我做错了?是否有任何文档或手册 - 如何通过tastypie为“通用”模型创建对象?
答案 0 :(得分:0)
如果您使用的是内置Comment
模型,则GenericForeignKey
不可为空,这会抛出您看到的异常。资源上的GenericForeignKeyField
指定null=True
,导致Tastypie允许将null值传递给ORM。
您可以通过它的resource_uri为GenericForeignKeyField
指定一个值,例如{"comment":"sdfsdfsdf", "content_object": "/api/v1/blog_item/1/"}
。