更改 URL 对 JSON 返回的 Django Rest 框架没有影响
Posted
技术标签:
【中文标题】更改 URL 对 JSON 返回的 Django Rest 框架没有影响【英文标题】:Changing the URL has no effect on JSON Returned DjangoRest Framerwork 【发布时间】:2019-10-29 06:23:11 【问题描述】:我正在尝试过滤存储的客户列表并返回特定客户 当我尝试 (xxx/api/customers/fred) 时,它会返回所有客户,并且在 customers/ 之后输入的任何内容对返回的 JSON 没有影响
观看次数
class CustomerListAPIView(generics.ListAPIView):
queryset = Customer.objects.all()
serializer_class = CustomerSerializer
class CustomerRetrieveAPIView(generics.RetrieveAPIView):
queryset = Customer.objects.all()
serializer_class = CustomerSerializer
lookup_field= "name"
序列化器
class CustomerSerializer(serializers.HyperlinkedModelSerializer):
class Meta:
model = Customer
fields = ['name' , 'address', 'phonenumber']
网址
url(r'^api/customers/', views.CustomerListAPIView.as_view(), name = "customer_list"),
url(r'^(?P<slug>[\w-]+)/$', views.CustomerRetrieveAPIView.as_view(), name='retrieve'),
我也尝试覆盖 def get_queryset(self, *args, **kwargs): 但是当输入 url 时这个方法似乎没有被触发
【问题讨论】:
【参考方案1】:将更详细的 url 放在更通用的前面以避免歧义,在customer_list
URL 模式的末尾添加 $,在retrieve
URL 模式中添加缺少的前缀:
url(r'^api/customers/(?P<slug>[\w-]+)/$', views.CustomerRetrieveAPIView.as_view(), name='retrieve'),
url(r'^api/customers/$', views.CustomerListAPIView.as_view(), name = "customer_list"),
您的所有请求都由第一种模式处理 - 因为(列表和详细)URL 都以 api/customers/
开头。
【讨论】:
以上是关于更改 URL 对 JSON 返回的 Django Rest 框架没有影响的主要内容,如果未能解决你的问题,请参考以下文章