如何从rabbitmq消息中获取pika python中的basicproperties头字段?

时间:2022-06-27 09:49:21
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