我正在尝试授权,只有对象的所有者才能编辑它们。
如何在我的授权方法中获取 post 调用中正在编辑的对象的 ID?
例如:如果有人 PUT 到 url /api/v1/resource_name/1
,我想得到 ' 1 '
此外,tastepie 允许一次性编辑一组对象。(http://django-tastypie.readthedocs.org/en/latest/interacting.html#updating-a-whole-collection-of-resources-put)
有没有办法让我获得正在编辑的对象列表在任何通话中?
谢谢!