- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试序列化 Onetofield 关系中两个模型的字段。因此,我覆盖了序列化器中的更新和 to_representation 方法。对于 GET 请求,一切正常,但 POST 请求会抛出
/personalData/处的属性错误
“OrderedDict”对象没有属性“firstname”
错误。
我的模型:
class UserData(models.Model):
user = models.OneToOneField(User)
gender = models.CharField(max_length=20, blank=True)
firstname = models.CharField(max_length=50, blank=True)
lastname = models.CharField(max_length=50, blank=True)
nationality = models.CharField(max_length=30, blank=True)
class Employee(models.Model):
userData = models.OneToOneField(UserData)
birthdate = models.CharField(max_length=30, blank=True)
jobTitle = models.CharField(max_length=50, blank=True)
我的序列化器类:
class EmployeePersonalDataSerializer(serializers.Serializer):
firstname = serializers.CharField()
lastname = serializers.CharField()
birthdate = serializers.CharField()
gender = serializers.CharField()
jobTitle = serializers.CharField()
nationality = serializers.CharField()
def update(self, instance, validated_data):
instance.firstname = validated_data.get('firstname', instance.firstname)
instance.lastname = validated_data.get('lastname', instance.lastname)
instance.gender = validated_data.get('gender', instance.gender)
instance.nationality = validated_data.get('nationality', instance.nationality)
instance.employee.jobTitle = validated_data.get('jobTitle', instance.employee.jobTitle)
instance.employee.birthdate = validated_data.get('birthdate', instance.employee.birthdate)
instance.employee.save()
instance.save()
return instance
def to_representation(self, obj):
return {
'firstname': obj.firstname,
'lastname': obj.lastname,
'birthdate': obj.employee.birthdate,
'gender': obj.gender,
'jobTitle': obj.employee.jobTitle,
'nationality': obj.nationality
}
编辑:
完整的回溯:
Traceback:
File "/home/user/.local/lib/python2.7/site-packages/django/core/handlers/base.py" in get_response
132. response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "/home/user/.local/lib/python2.7/site-packages/django/views/decorators/csrf.py" in wrapped_view
58. return view_func(*args, **kwargs)
File "/home/user/.local/lib/python2.7/site-packages/django/views/generic/base.py" in view
71. return self.dispatch(request, *args, **kwargs)
File "/usr/local/lib/python2.7/dist-packages/rest_framework/views.py" in dispatch
466. response = self.handle_exception(exc)
File "/usr/local/lib/python2.7/dist-packages/rest_framework/views.py" in dispatch
463. response = handler(request, *args, **kwargs)
File "/myproject/views.py" in post
177. serializer.update(instance=userData, validated_data=serializer.data)
File "/usr/local/lib/python2.7/dist-packages/rest_framework/serializers.py" in data
487. ret = super(Serializer, self).data
File "/usr/local/lib/python2.7/dist-packages/rest_framework/serializers.py" in data
225. self._data = self.to_representation(self.validated_data)
File "/myproject/serializers.py" in to_representation
226. 'firstname': obj.firstname,
Exception Type: AttributeError at /personalData/
Exception Value: 'OrderedDict' object has no attribute 'firstname'
最佳答案
来自 DRF 文档
If you want to implement a read-write relational field, you must also implement the .to_internal_value(self, data) method.
因此,您想要实现一个读写(POST/GET)字段,因此您需要在序列化器中实现 .to_internal_value
方法。
关于python - 覆盖更新和 to_representation 方法在 POST 请求时抛出 AttributeError,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32785083/
我有一个实现 BaseSerializer 的序列化程序我正在使用 to_representation 的类(class)函数进行函数调用,如下所示: class ItemSerializer(ser
简而言之,序列化器: class ReleaseComponentContactSerializer(StrictSerializerMixin, serializers.ModelSerialize
我尝试序列化 Onetofield 关系中两个模型的字段。因此,我覆盖了序列化器中的更新和 to_representation 方法。对于 GET 请求,一切正常,但 POST 请求会抛出 /pers
关于使用 to_representation 的文档有点短。 Django Rest Framework 3.0+ 使用此方法来更改 API 中数据的表示。 这里是文档链接: http://www.d
我有以下序列化器类: class DataLocationSerializer(QueryFieldsMixin, serializers.ModelSerializer): def crea
我有以下 SerializerField: class TimestampField(Field): def to_representation(self, value): i
我正在使用 Django 1.7.1 和 Python 2.7 从 Django Rest Framework 2.4 升级到 3.0.1,但无法解决以下错误: File "/Users/bjacob
我想要一个自定义(只读)序列化器字段,如果它是 None,它会替换序列化值。 .我以为我可以覆盖 to_representation() ,但这似乎没有运行。这是一些代码: 模型.py: class
.to_representation() 和 .to_internal_value 在序列化器中做什么? 如果我将数据传递给序列化器,数据是否首先抛出 to_representation() ? 这两
我是一名优秀的程序员,十分优秀!