我想向我的序列化器中添加一些额外的数据。在我的ajax调用中,我已经发送了一个附加字段“消息”(来自文本区域的文本)。此字段不在我的模型中。
Blowlow是我的代码的示例片段。 编辑:此代码有效
string myObjName;
//split your object Name to only get his name
string[] fullObjName = txtTest.ToString().Split('.');
myObjName = fullObjName[fullObjName.Length - 1].Split(':')[0];
class BookingRequestViewSet(mixins.CreateModelMixin, viewsets.GenericViewSet):
serializer_class = BookingRequestSerializer
有什么主意吗?