美文网首页
REST framework

REST framework

作者: 好小葱1 | 来源:发表于2018-07-27 21:50 被阅读28次

    装饰器

    • list_route与detail_route的区别就是 list_route 的参数不包含 pk(对应 list),而 detail_route 包含pk(对应 retrieve)。看一段代码就懂了:

      @list_route(methods=['post', 'delete'], url_path='')
      def custom_handler(self, request):
          pass
      
      @detail_route(methods=['get'], url_path='')
      def custom_handler(self, request, pk=None):
          pass
      

    相关文章

      网友评论

          本文标题:REST framework

          本文链接:https://www.haomeiwen.com/subject/ukximftx.html