1
我使用的是路由器& ReadOnlyModelViewset,並嘗試建立一個API服務,使項目的刪除基於項目只有特定的領域,如: http://localhost/delete_post?author=「ABC 「Django的REST框架刪除項目基於字段
我想urls.py和views.py需要更改,有什麼正確的方法來覆蓋路由器和viewModels來實現這一目標?
models.py
class post(models.Model):
author = models.CharField(max_length=100)
text = models.CharField(max_length=100)
views.py
class PostViewSet(viewsets.ReadOnlyModelViewSet):
queryset = Post.objects.all()
serializer_class = PostSerializer