使用Microsoft bot框架和Nodejs sdk v3开发一个webapp机器人。尝试实现反馈功能。使用按钮并在自适应卡中向其中添加提交操作。
单击按钮时,可以捕获该按钮的值。但也要在单击后更改按钮的颜色。有没有办法做到这一点,尝试使用CSS但没有运气。
{
"type": "ColumnSet",
"columns": [
{
"type": "Column",
"width": "Auto",
"items": [
{
"type": "TextBlock",
"text": "★"
}
],
"selectAction": {
"type": "Action.Submit",
"title": "1",
"data": {
"feedback": "1"
}
}
},
{
"type": "Column",
"width": "Auto",
"items": [
{
"type": "TextBlock",
"text": "★"
}
],
"selectAction": {
"type": "Action.Submit",
"title": "2",
"data": {
"feedback": "2"
}
}
}
]
}