Tasty Pie を使用してサービスを作成しています。非 PK 値に基づいて検索するようにフィルタリングを適用しました: 私の api.py ファイル:
class TestResource(ModelResource):
class Meta:
queryset = ack_dadc.objects.all()
authorization = Authorization()
filtering = {
'DistributorUID': ['exact'],
}
detail_allowed_methods = ['get', 'post', 'put', 'delete']
私の質問は: http:localhost/api/v1/test/?DistributorUID=steve に基づいて PUT リクエストを実行できますか?