我正在尝试将'first_name'和'last_name'字段放入序列化程式中,而该序列化程式使用的模型没有使用者信息:
这是serializers.py文件:
enter image description here
下面是models.py文件(来自django-friendship模型):
enter image description here
我还附上views.py:
enter image description here
我正在尝试将'first_name'和'last_name'字段放入序列化程式中,而该序列化程式使用的模型没有使用者信息:
这是serializers.py文件:
enter image description here
下面是models.py文件(来自django-friendship模型):
enter image description here
我还附上views.py:
enter image description here
1条答案
按热度按时间uubf1zoe1#
在这种情况下,我将为用户创建一个序列化程序,然后在FriendshipRequestSerializer中使用它。