您可以帮助我使用node.js在bot框架模拟器上创建自适应卡吗?我在模拟器上尝试了https://docs.microsoft.com/en-us/bot-framework/nodejs/bot-builder-nodejs-send-rich-cards上的示例,但它没有创建自适应卡。
答案 0 :(得分:3)
AdaptiveCard只是一个JSON,您可以将其作为邮件的附件发送。
session.send(new builder.Message(session).addAttachment({
contentType: "application/vnd.microsoft.card.adaptive",
content: // here you should put your json.
}));
自适应卡JSON的示例可以在AdaptiveCards.io网站上找到,例如here。
在您提及的链接中,还有a sample。