嗨,有人可以帮我使用node.js在bot框架模拟器上创建自适应卡吗?我在模拟器上的https://docs.microsoft.com/en-us/bot-framework/nodejs/bot-builder-nodejs-send-rich-cards上尝试了该示例,但它没有创建自适应卡。

最佳答案

AdaptiveCard只是一个JSON,您可以将其作为消息的附件发送。

 session.send(new builder.Message(session).addAttachment({
     contentType: "application/vnd.microsoft.card.adaptive",
     content: // here you should put your json.
 }));


可以在AdaptiveCards.io站点上找到自适应卡JSON的示例,例如here

在您提到的链接中,也有a sample

09-16 23:11