编辑2:以下模式(由同事提供)起作用。我从Microsoft的示例中的架构中删除了引号,但仍然无法正常工作。我不确定是什么问题。如果有人要提供答案,我可以不提问题,但是我已经解决了。
const card = {
contentType: 'application/vnd.microsoft.card.adaptive',
content: {
$schema: 'http://adaptivecards.io/schemas/adaptive-card.json',
type: 'AdaptiveCard',
version: '1.0',
{
type: 'Input.Text',
placeholder: 'Name',
style: 'text',
maxLength: 50,
id: 'defaultInput'
},
actions: [
{
type: 'Action.Submit',
title: 'Siguiente',
data: {} // will be populated with form input values
}
]
}
};
我正在尝试使用自适应卡在MS Bot中创建表格。我从MS网站(https://blog.botframework.com/2019/07/02/using-adaptive-cards-with-the-microsoft-bot-framework/)获取了示例表格,但收到以下错误消息
该错误似乎是在考虑我的操作类型为Action.openUrl
,但在下面的代码中却没有看到。任何帮助,不胜感激。使用Microsoft Bot Framework 3,节点12.13.0。
function askPolicyNumber(session) {
const card = {
'$schema': 'https://adaptivecards.io/schemas/adaptive-card.json',
'type': 'AdaptiveCard',
'version': '1.1',
'body': [
{
'type': 'Input.Text',
'id': 'id_text'
},
{
'type': 'Input.Number',
'id': 'id_number'
}
],
'actions': [
{
'type': 'Action.messageBack',
'title': 'Submit',
'data': {
'prop1': true,
'prop2': []
}
}
]
};
const msg = new builder.Message(session).attachments([card]);
return session.send(msg);
}
编辑:
似乎无论我为它设置了什么动作,都一直认为它是openUrl
动作。实际上,如果我将其设置为openUrl
并为其提供一个url
属性,它将可以正常工作。
我查看了此页面-https://docs.microsoft.com/en-us/microsoftteams/platform/task-modules-and-cards/cards/cards-actions#adaptive-cards-actions-并按照其中的“带有messageBack操作的自适应卡”的说明进行操作,但它没有任何改变
"actions": [
{
"type": "Action.Submit",
"title": "Click me for messageBack",
"data": {
"msteams": {
"type": "messageBack",
"displayText": "I clicked this button",
"text": "text to bots",
"value": "{\"bfKey\": \"bfVal\", \"conflictKey\": \"from value\"}"
}
}
}
]
}
答案 0 :(得分:1)
您所做的事情有很多问题。建议每个人都使用Bot Builder v4而不是v3。您的同事解决的主要问题是,您试图使用自适应卡对象,就好像它是附件对象一样。
您链接到的博客文章解释说,自适应卡必须遵循自适应卡架构。自适应卡架构中没有Action.messageBack
。请继续参考文档以获取更多信息。