我正在使用Nodejs SDK,并向用户发送选择促销:
builder.Prompts.choice(
session,
bot_response,
"Yes|No",
{
maxRetries: 3,
retryPrompt: 'Sorry, that is not a valid input'
},
{
listStyle: builder.ListStyle.button
}
);
这是它的呈现方式:
如何使其以按钮样式呈现?