1.序列化传参:
AppraisalIndexSerializer(first_index, context={'department': department})
接收参数:
department = self.context['department']
在序列化器方法中使用可以获得参数
2.序列化类获取请求request(在使用ListAPIView这类mixins封装的类时)
GET请求为例:
# 在序列化类中使用
params = self.context.get("request")
欢迎关注wx公众号:python web小栈,共同探讨学习