ign*_*aga 8 django rest tastypie
我正在构建一个django tastypie 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",
)
Run Code Online (Sandbox Code Playgroud)
资源:
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",
)
Run Code Online (Sandbox Code Playgroud)
我的问题是我希望add_person在我的图片资源中有一个终点.如果我使用PUT,那么我需要指定图片中的所有数据如果我使用PATCH,我仍然需要指定图片中的所有人.当然我可以简单地生成/api/picture/:id/add_peopleURL,在那里我可以处理我的问题.问题是它感觉不干净.
另一种解决方案是产生/api/picture/:id/people终点,在那里我能做到GET,POST,PUT,就像是一个新的资源,但我不知道如何实现这一点,它似乎很奇怪这个资源下创造新的人.
有什么想法吗?
我通过重写 API 资源的 save_m2m 函数来实现这一点。这是使用您的模型的示例。
def save_m2m(self, bundle):
for field_name, field_object in self.fields.items():
if not getattr(field_object, 'is_m2m', False):
continue
if not field_object.attribute:
continue
if field_object.readonly:
continue
# Get the manager.
related_mngr = getattr(bundle.obj, field_object.attribute)
# This is code commented out from the original function
# that would clear out the existing related "Person" objects
#if hasattr(related_mngr, 'clear'):
# Clear it out, just to be safe.
#related_mngr.clear()
related_objs = []
for related_bundle in bundle.data[field_name]:
# See if this person already exists in the database
try:
person = Person.objects.get(name=related_bundle.obj.name)
# If it doesn't exist, then save and use the object TastyPie
# has already prepared for creation
except Person.DoesNotExist:
person = related_bundle.obj
person.save()
related_objs.append(person)
related_mngr.add(*related_objs)
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
3013 次 |
| 最近记录: |