我有一个带有数组字段的嵌套可写序列化程序.我需要使用表单数据对其进行测试,因为其中一种字段类型是 ImageField
.当我将 ImageField
更改为 CharField
时,如果我以原始 JSON 格式发布它,它工作正常.
我的简化serializers.py
:
I have a nested writable serializer with array fields. I need to test it with form-data because one of the field type is ImageField
. When I changed the ImageField
into CharField
it worked fine if I posted it with raw JSON format.
My simplified serializers.py
:
class ProductMarketSerializer(serializers.ModelSerializer):
id = serializers.IntegerField(required=False)
market = serializers.PrimaryKeyRelatedField(many=False, queryset=Market.objects.all())
slabs = serializers.PrimaryKeyRelatedField(many=True, queryset=Slab.objects.all())
thicknesses = serializers.PrimaryKeyRelatedField(many=True, queryset=Thickness.objects.all())
finish_types = serializers.PrimaryKeyRelatedField(many=True, queryset=FinishType.objects.all())
class Meta:
model = ProductMarket
fields = ['id', 'market', 'name', 'slabs', 'thicknesses', 'finish_types']
class ProductSerializer(serializers.ModelSerializer):
collection = serializers.PrimaryKeyRelatedField(queryset=ProductCollection.objects.all(), many=False)
color = serializers.PrimaryKeyRelatedField(queryset=ColorParent.objects.all(), many=False)
images = ProductImageSerializer(many=True)
descriptions = ProductDescriptionSerializer(many=True)
markets = ProductMarketSerializer(many=True)
class Meta:
model = Product
fields = ['id', 'product_code', 'collection', 'color', 'images', 'descriptions', 'markets', 'video', 'status']
def create(self, validated_data):
image_data = validated_data.pop('images')
description_data = validated_data.pop('descriptions')
market_data = validated_data.pop('markets')
images = []
for image in image_data:
img_obj = ProductImage.objects.create(**image)
images.append(img_obj)
descriptions = []
for description in description_data:
desc_obj = ProductDescription.objects.create(**description)
descriptions.append(desc_obj)
markets = []
for market in market_data:
slabs = market.pop('slabs')
thicknesses = market.pop('thicknesses')
finish_types = market.pop('finish_types')
market_obj = ProductMarket.objects.create(**market)
market_obj.slabs.set(slabs)
market_obj.thicknesses.set(thicknesses)
market_obj.finish_types.set(finish_types)
markets.append(market_obj)
product = Product.objects.create(**validated_data)
product.images.set(images)
product.descriptions.set(descriptions)
product.markets.set(markets)
return product
views.py
:
class ProductView(viewsets.ModelViewSet):
permission_classes = [permissions.DjangoModelPermissions]
serializer_class = ProductSerializer
queryset = Product.objects.all()
目前我只能在 1 个 markets
字段中发送 1 个 slabs
、thicknesses
和 finish_types
.如何为同一个 markets
添加另一个 slabs
、thicknesses
和 finish_types
?如果我使用表单数据作为正文,正确的键值对格式是什么?
创建的Product
对象:
For now I can only send 1 slabs
, thicknesses
, and finish_types
each within 1 markets
field. How to add another slabs
, thicknesses
, and finish_types
for the same markets
? What's the correct key-value pair format if I use form-data as Body?
The created Product
object:
{
"message": "success",
"data": {
"id": 60,
"product_code": "BQ1010",
"collection": 1,
"color": 1,
"images": [
{
"id": 57,
"image": "image",
"default": false
}
],
"descriptions": [
{
"id": 65,
"language": 1,
"description": "new description in english"
}
],
"markets": [
{
"id": 47,
"market": 1,
"name": "White Stone",
"slabs": [
1
],
"thicknesses": [
2
],
"finish_types": [
1
]
}
],
"video": "https://www.youtube.com",
"status": "Continue"
}
}
当我尝试像这样添加第二个 slabs
和 thicknesses
时:slabs
和 thicknesses
字段将为空.
When I try to add the second slabs
and thicknesses
like this:
The slabs
and thicknesses
fields will be empty.
"markets": [
{
"id": 48,
"market": 1,
"name": "White Stone",
"slabs": [],
"thicknesses": [],
"finish_types": [
1
]
}
],
如何在 Django REST Framework 中使用 Postman 表单数据发布嵌套数组?
group_permission[0]permission:share_item
group_permission[0]user_group:1
group_permission[0]key:5
group_permission[0]groups:1
group_permission[0]value:True
这篇关于如何使用 Postman 表单数据在 Django REST Framework 中发布嵌套数组?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!