대기열에서 메시지를 읽는 데 node.js amqp 모듈을 사용하고 있습니다. 다음은 대기열에서 사용 가능한 메시지가있을 때 호출되는 콜백입니다.node.js amqp 모듈을 사용할 때 AQMP 메시지 버퍼를 JSON 객체로 변환하는 방법은 무엇입니까?
function onMessage(message, headers, deliveryInfo)
{
console.log(message); //This prints buffer
//how to convert message (which I expect to be JSON) into a JSON object.
//Also how to get the JSON string from the 'message' which seems to be a buffer
}
감사합니다.
정답입니다. – Dunk