Tastypie在两个模型之间添加新资源

时间:2014-04-16 12:38:16

标签: python django tastypie

以下是我的模特辩护

class ExtendedContentToCategory(models.Model):
    category = models.ManyToManyField(Categories)
    extended_content = models.ForeignKey('ExtendedContent', unique=True)

class Meta:
    verbose_name = _('Assets > Extended content to category')

此模型将Categories和Gallery模型与ManytoOne关系连接起来。意味着一个画廊能够连接许多类别。

我需要创建api源以使用tastypie添加此模型对象。 任何人都可以帮我解决这个问题

0 个答案:

没有答案