def callback(ch, method, properties, body):
prop = properties
print prop
#print prop[1]
#print prop[“headers”]
#print prop.headers()
print body
This is the list from prop:
这是道具的清单:
<BasicProperties(['delivery_mode=2', "headers={'BIProto.ClickEvent': 'BIProto.ClickEvent'}", 'content_type=application/x-protobuf'])>
I'm able to print body and the list of basic properties. But how can I just get headers?
我能够打印正文和基本属性列表。但是我怎样才能获得标题?
All the #print statements in the function error-ed.
函数中的所有#print语句都出错了。
1 个解决方案
#1
13
Nevermind, all I had to do was print prop.headers
没关系,我所要做的就是打印prop.headers
#1
13
Nevermind, all I had to do was print prop.headers
没关系,我所要做的就是打印prop.headers