bot框架中提示的可选属性

时间:2016-10-31 14:36:12

标签: node.js botframework

我正在努力使用maxRetries和retryPrompt等可选属性(iPromptOptions)。无法获得node.js的语法。有没有人有一个带有可选属性的提示示例实际上有效?

2 个答案:

答案 0 :(得分:2)

这是应用IPromptOptions的正确语法

builder.Prompts.choice(session, "Please select : ", "Cat|Dog|Fox",
                {
                    listStyle: builder.ListStyle.button,
                    maxRetries: 2,
                    retryPrompt:'Please Provide invoice no'

                })

答案 1 :(得分:0)

AndrewMat通过发布自己的问题回答了我的问题。 syntex类似于:

builder.Prompts.number(会话,“酷。这是多少?”,{     iPromptOptions:“我无法理解$%#@。你能再次输入吗?” });