我正在构建一个 django sweetpie api,但在ManyToMany
关系中添加元素时遇到问题
示例,models.py
class Picture(models.db):
""" A picture of people"""
people = models.ManyToManyField(Person, related_name='pictures',
help_text="The people in this picture",
)
class Person(models.db):
""" A model to represet a person """
name = models.CharField(max_length=200,
help_text="The name of this person",
)
资源:
class PictureResource(ModelResource):
""" API Resource for the Picture model """
people = fields.ToManyField(PersonResource, 'people', null=True,
related_name="pictures", help_text="The people in this picture",
)
class PersonResource(ModelResource):
""" API Resource for the Person model """
pictures = fields.ToManyField(PictureResource, 'pictures', null=True,
related_name="people", help_text="The pictures were this person appears",
)
我的问题是我想add_person
在我的图片资源中有一个终点。如果我使用PUT
,那么我需要指定图片中的所有数据 如果我使用PATCH
,我仍然需要指定图片中的所有人。当然,我可以简单地生成/api/picture/:id/add_people
URL,在那里我可以处理我的问题。问题是它感觉不干净。
另一种解决方案是生成/api/picture/:id/people
端点,在那里我可以做GET
, POST
, PUT
, 就像它是一个新资源一样,但我不知道如何实现它,在这个资源下创建新人似乎很奇怪。
有什么想法吗?