0
Typescriptの新機能です。私はRabbitMQチャンネルからいくつかのデータを読んでいて、それをJSONオブジェクトに変換しています。この行ではエラーが発生します。Typescript error TS2345エラー:TS2345: 'Buffer'型の引数が 'string'型のパラメータに割り当てられません
communicationInformation = JSON.parse(newCommunication.content);
TS2345: 'Buffer'型の引数は 'string'型のパラメータに代入できません。
データをキャストする必要はありますか?私はエラーがJSON.parse
の入力パラメータに投げていると思う活字体2.4.1
Amqplib.connect(amqpLibUrl, (err, connection) => {
if (!err) {
connection.createChannel((err, channel) => {
channel.consume('QueueName', newCommunication => {
if (newCommunication != null) {
let communicationInformation = JSON.parse(newCommunication.content);
// Code
}
})
})
}
});