gpt4 book ai didi

c# - 自适应卡片中的轮播

转载 作者:行者123 更新时间:2023-12-03 15:48:46 24 4
gpt4 key购买 nike

请指导我在 MS bot 框架中创建轮播自适应卡片。我正在使用 .Net sdk。我尝试使用自适应卡设计器进行设计,但无法做到。

最佳答案

你的问题不够具体,我无法理解你在哪里遇到了问题,但我可以给你一个创建卡片轮播的基本大纲。我的代码是 nodejs,但它应该足够相似,可以给你一个想法。

您将需要 CardFactory 和 MessageFactory 来首先生成卡片,然后是 Carousel(它将卡片数组作为输入)。

// First create an empty array for your carousel
var cardArray = [];

// Populate the array with your cards (can use any method, I used a for loop)
for (var idx = 0; idx < dataForCards.length; idx++) {
// Create the adaptive card
var adaptiveCard = CardFactory.adaptiveCard({

// YOUR CARD DEFINITION HERE

});
// Push the card to the array for the carousel
cardArray.push(adaptiveCard);
}
// Send the array as a carousel
await step.context.sendActivity(MessageFactory.carousel(cardArray));

关于c# - 自适应卡片中的轮播,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59684839/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com