首页  >  问答  >  正文

python中的attrs是什么?

from rest_framework import serializers

class CommentSerializer(serializers.Serializer):
    email = serializers.EmailField()
    content = serializers.CharField(max_length=200)
    created = serializers.DateTimeField()

    def restore_object(self, attrs, instance=None):
        """
        Given a dictionary of deserialized field values, either update
        an existing model instance, or create a new model instance.
        """
        if instance is not None:
            instance.email = attrs.get('email', instance.email)
            instance.content = attrs.get('content', instance.content)
            instance.created = attrs.get('created', instance.created)
            return instance
        return Comment(**attrs)

比如,这其中的attrs是?

大家讲道理大家讲道理2741 天前1419

全部回复(2)我来回复

  • 迷茫

    迷茫2017-04-17 13:45:30

    这是python的参数列表,两个星号是可变参数。
    restore_object接收到的attrs参数是dict类型,传递到Comment函数的时候前面加两个星号转成可变参数列表。
    比如

    attrs = {'a':1, 'b':2}
    

    Comment函数实际的调用会变成:

    Comment(a=1, b=2)
    

    参考:http://n3xtchen.github.io/n3xtchen/python/2014/08/08/python---args-and-kwargs/

    回复
    0
  • 阿神

    阿神2017-04-17 13:45:30

    attr 是函数的参数 具体是啥要看你自己的定义了

    回复
    0
  • 取消回复