gpt4 book ai didi

python - Django(休息框架): create (POST) a nested/sub-resource using hyperlinked relations

转载 作者:太空狗 更新时间:2023-10-30 01:39:02 25 4
gpt4 key购买 nike

我很难理解超链接序列化器的工作原理。如果我使用普通模型序列化器,它一切正常(返回 id 等)。但我更愿意返回 url,这在我看来更符合 REST 风格。

我正在使用的示例看起来非常简单和标准。我有一个 API,允许“管理员”在系统上创建客户(在本例中为公司)。 Customer 具有属性“name”、“accountNumber”和“billingAddress”。这存储在数据库的 Customer 表中。“管理员”还可以创建客户联系人(客户/公司的个人/联系人)。

创建客户的 API 是 /customer。对此执行 POST 并成功后,将在 /customer/{cust_id} 下创建新的 Customer 资源。

随后,用于创建客户联系人的 API 为 /customer/{cust_id}/contact。当针对此完成 POST 并成功时,将在 /customer/{cust_id}/contact/{contact_id} 下创建新的 Customer Contact 资源。

我认为这非常简单,是面向资源架构的一个很好的例子。

这是我的模型:

class Customer(models.Model):
name = models.CharField(max_length=50)
account_number = models.CharField(max_length=30, name="account_number")
billing_address = models.CharField(max_length=100, name="billing_address")

class CustomerContact(models.Model):
first_name = models.CharField(max_length=50, name="first_name")
last_name = models.CharField(max_length=50, name="last_name")
email = models.CharField(max_length=30)
customer = models.ForeignKey(Customer, related_name="customer")

因此 CustomerContact 和 Customer 之间存在外键(多对一)关系。

创建客户非常简单:

class CustomerViewSet(viewsets.ViewSet):
# /customer POST
def create(self, request):
cust_serializer = CustomerSerializer(data=request.data, context={'request': request})
if cust_serializer.is_valid():
cust_serializer.save()
headers = dict()
headers['Location'] = cust_serializer.data['url']
return Response(cust_serializer.data, headers=headers, status=HTTP_201_CREATED)
return Response(cust_serializer.errors, status=HTTP_400_BAD_REQUEST)

创建 CustomerContact 有点棘手,因为我必须获取客户的外键,将其添加到请求数据并将其传递给序列化程序(我不确定这是否是正确/最好的方法它)。

class CustomerContactViewSet(viewsets.ViewSet):
# /customer/{cust_id}/contact POST
def create(self, request, cust_id=None):
cust_contact_data = dict(request.data)
cust_contact_data['customer'] = cust_id
cust_contact_serializer = CustomerContactSerializer(data=cust_contact_data, context={'request': request})
if cust_contact_serializer.is_valid():
cust_contact_serializer.save()
headers = dict()
cust_contact_id = cust_contact_serializer.data['id']
headers['Location'] = reverse("customer-resource:customercontact-detail", args=[cust_id, cust_contact_id], request=request)
return Response(cust_contact_serializer.data, headers=headers, status=HTTP_201_CREATED)
return Response(cust_contact_serializer.errors, status=HTTP_400_BAD_REQUEST)

客户的序列化器是

class CustomerSerializer(serializers.HyperlinkedModelSerializer):
accountNumber = serializers.CharField(source='account_number', required=True)
billingAddress = serializers.CharField(source='billing_address', required=True)
customerContact = serializers.SerializerMethodField(method_name='get_contact_url')

url = serializers.HyperlinkedIdentityField(view_name='customer-resource:customer-detail')

class Meta:
model = Customer
fields = ('url', 'name', 'accountNumber', 'billingAddress', 'customerContact')

def get_contact_url(self, obj):
return reverse("customer-resource:customercontact-list", args=[obj.id], request=self.context.get('request'))

注意(并可能忽略)customerContact SerializerMethodField(我在客户资源的表示中返回 CustomerContact 的 URL)。

CustomerContact 的序列化器是:

class CustomerContactSerializer(serializers.HyperlinkedModelSerializer):
firstName = serializers.CharField(source='first_name', required=True)
lastName = serializers.CharField(source='last_name', required=True)

url = serializers.HyperlinkedIdentityField(view_name='customer-resource:customercontact-detail')

class Meta:
model = CustomerContact
fields = ('url', 'firstName', 'lastName', 'email', 'customer')

'customer' 是对 CustomerContact 模型/表中客户外键的引用。所以当我这样写 POST 时:

POST http://localhost:8000/customer/5/contact
body: {"firstName": "a", "lastName":"b", "email":"a@b.com"}

我回来了:

{
"customer": [
"Invalid hyperlink - No URL match."
]
}

所以看起来外键关系必须在 HyperlinkedModelSerializer 中表示为 URL? DRF 教程 ( http://www.django-rest-framework.org/tutorial/5-relationships-and-hyperlinked-apis/#hyperlinking-our-api ) 似乎也是这样说的:

Relationships use HyperlinkedRelatedField, instead of PrimaryKeyRelatedField

我的 CustomerContactViewSet 可能做错了什么,在将请求数据传递给序列化程序之前将 customer_id 添加到请求数据中 (cust_contact_data['customer'] = cust_id) 不正确?我尝试将 URL 传递给它 - http://localhost:8000/customer/5 - 来自上面的 POST 示例,但我得到了一个稍微不同的错误:

{
"customer": [
"Invalid hyperlink - Incorrect URL match."
]
}

如何使用 HyperlinkedModelSerializer 创建与另一个模型具有外键关系的实体?

最佳答案

好吧,我对 rest_framework 进行了一些研究,似乎不匹配是由于 URL 模式匹配没有解析到您适当的 View namespace 。在 here 周围做一些打印品并且您可以看到 expected_viewnameself.view_name 不匹配。

检查您的应用程序中的 View 命名空间是否正确(这些 View 似乎在命名空间 customer-resource 下),如果需要,请修复您的 view_name 属性通过 Serializer Meta 上的 extra_kwargs 相关的超链接相关字段:

class CustomerContactSerializer(serializers.HyperlinkedModelSerializer):
firstName = serializers.CharField(source='first_name', required=True)
lastName = serializers.CharField(source='last_name', required=True)

url = serializers.HyperlinkedIdentityField()

class Meta:
model = CustomerContact
fields = ('url', 'firstName', 'lastName', 'email', 'customer')
extra_kwargs = {'view_name': 'customer-resource:customer-detail'}

希望这对你有用;)

关于python - Django(休息框架): create (POST) a nested/sub-resource using hyperlinked relations,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31158987/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com