Django REST: Uploading and serializing multiple images

后端 未结 2 926
离开以前
离开以前 2020-11-28 09:21

I have 2 models Task and TaskImage which is a collection of images belonging to Task object.

What I want is to be able to add

2条回答
  •  感情败类
    2020-11-28 09:57

    You have read_only set to true in TaskImageSerializer nested field. So there will be no validated_data there.

提交回复
热议问题