回复消息时向消息添加图像不起作用

Adding image to a message does not work when replying to a message

我正在尝试将图像附加到重播的邮件中。

msg.reply(JSON.parse(data).results[0].overview, { file : JSON.parse(data).results[0].poster_path});

但只发送了作为字符串的“概述”,没有“poster_path”图像。

为什么会这样,我该如何解决?

我已经检查过 JSON 数据有效。

为了让你的代码更清晰,避免内存过载,你可以调用一次


   // get first value
   var firstResult = JSON.parse(data).results[0];

   // confirm the result
   console.log(firstResult);

   // action
   msg.reply(firstResult.overview, { file : firstResult.poster_path});



尝试在控制台中查看 firstResult 以确认响应。