2013-08-22 4 views
18

Ich bin mit Protokoll-Puffer Python lib Daten zu senden, aber es ist einige Probleme haben, soAttribute: Zuordnung nicht zu Verbund Feld „Aufgabe“ in Protokollnachricht Objekt erlaubt

Traceback (most recent call last): 
    File "test_message.py", line 17, in <module> 
    ptask.task = task 
    File "build\bdist.win32\egg\google\protobuf\internal\python_message.py", line 
513, in setter 
AttributeError: Assignment not allowed to composite field "_task" in protocol message object. 

die src wie folgt:

proto-Datei:

message task { 
    required int32 id = 1; 
    required string msg = 2; 
} 

message task_info { 
    required task task = 1; 
} 

python-Code:

task = yacc.task() 
task.id = 1000 
task.msg = u"test" 
ptask = yacc.task_info() 
ptask.task = task # this line happen the runtime error 

Antwort

15

Ich weiß nicht, Protokoll-Puffer aber ich habe einen Blick auf the docs und es sagt:

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.

Also soll ich gehe davon aus dieser Arbeit:

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

Ich bin neu auch für Protokollpuffer und mit dem gleichen Problem konfrontiert. Ich habe this method hilfreich gefunden.

ich denke, es sollte funktionieren:

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

CopyFrom Versuchen:

ptask.task.CopyFrom(task) 
Verwandte Themen