AttributeError: Assignment not allowed to composite field “task” in protocol message object

前端 未结 3 1118
执念已碎
执念已碎 2020-12-17 07:28

I\'m using protocol-buffers python lib to send data,but it\'s have some problems, so

Traceback (most recent call last):
  File \"test_message.py\", line 17,          


        
3条回答
  •  一个人的身影
    2020-12-17 08:29

    I don't know protocol-buffers but I took a look at the docs and it says:

    You cannot assign a value to an embedded message field. Instead, assigning a value to any field within the child message implies setting the message field in the parent.

    So I'm assuming this should work:

    task = yacc.task()
    task.id = 1000
    task.msg = u"test"
    ptask = yacc.task_info() 
    ptask.task.id = task.id
    ptask.task.msg = task.msg
    

提交回复
热议问题