我想使用如下表达式设置属性: =json(InputCard(dialog.msgs))
其中 InputCard() 是一个 LG 模板(如下所示)。我收到以下错误:
表达式评估导致错误。表达式:“=json(InputCard(dialog.msgs))”。错误:InputCard 没有评估器,它不是内置函数或自定义函数。
是否有允许我在自适应表达式中使用 LG 模板的语法,或者这不可能?感谢您的任何建议。
如果相关,#InputCard 的定义如下:
# InputCard(msgs)
- ```
{
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"type": "AdaptiveCard",
"version": "1.2",
"body": [
{
"type": "FactSet",
"facts": [
${join(foreach(msgs,item,FactGen(item.key,item.value)), ',' ) }
]
},
{
"type": "Input.Text",
"id": "reply",
"placeholder": "Enter your reply here"
}
],
"actions": [
{
"type": "Action.Submit",
"title": "Submit",
"data": ${json(msgs)}
}
],
"msteams": {"width": "Full"}
}