码迷,mamicode.com
首页 > 其他好文 > 详细

DRF的@action装饰器

时间:2018-11-21 19:35:22      阅读:589      评论:0      收藏:0      [点我收藏+]

标签:资源   methods   集中   请求方式   eth   body   res   lse   get   

# 转自:http://www.cnblogs.com/zhzhlong/p/9325180.html

视图集中附加action的声明

from rest_framework.decorators import action  
# 追加action:返回书记的倒叙地0个书籍的信息
    @action(methods=[‘get‘],detail=False)
    def latest(self, request):
        """
  # 追加action 修改图书的阅读数量
    @action(methods=[‘put‘],detail=True)
    def read(self, request, pk):
        ...

其中:

@action()
action装饰器可以接收两个参数:
    methods: 声明该action对应的请求方式,列表传递
    detail: 声明该action的路径是否与单一资源对应,及是否是xxx/<pk>/action方法名/
        True 表示路径格式是xxx/<pk>/action方法名/
        False 表示路径格式是xxx/action方法名/

DRF的@action装饰器

标签:资源   methods   集中   请求方式   eth   body   res   lse   get   

原文地址:https://www.cnblogs.com/chichung/p/9996916.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!