이 기능이 예상 결과를 출력 producer.py파이썬은
def callback(ch, method, properties, body):
result = body.decode()
resp = JSONEncoder().encode(result)
json_resp = json.loads(resp)
print(json_resp)
ch.basic_ack(delivery_tag = method.delivery_tag)
channel.stop_consuming()
에서 메시지를 얻기 위해 사용하고있다 RabbitMQ에서 함수 외부 변수 값을 얻을 수 있지만, 무엇을 찾고있는 것은 변수 json_resp를 얻는 것입니다 추가 처리를위한 콜백 함수의 외부
은 파일에 저장됩니다. 멋진 :) –