4
def start(bot, update):
    keyboard = [[InlineKeyboardButton("Apples", callback_data='1')],
        [InlineKeyboardButton("Oranges", callback_data='2')],
        [InlineKeyboardButton("Beans", callback_data='3')],
        [InlineKeyboardButton("Rice", callback_data='4')],
        [InlineKeyboardButton("Bread", callback_data='5')],                
        [InlineKeyboardButton("Tomatos", callback_data='6')],                
        [InlineKeyboardButton("Strawberry", callback_data='7')]
    ]
    reply_markup = InlineKeyboardMarkup(keyboard)
    update.message.reply_text('Multiple choice Quizz \nSelect all vegetables:', reply_markup=reply_markup)

InlineKeyboardMarkup を使用して、InlineKeyboardMarkup を非表示にしたり削除したりせずに、ユーザー ボタンの選択に対するフィードバックを提供できる方法はありますか?

たとえば、ユーザーが InlineKeyboardButton を選択すると、次のことができます。

Change the InlineKeyboardButton text
Change the appearance of the InlineKeyboardButton
Edit initial message in update.message.reply_text ( )

多肢選択式の質問を作成できるかどうかを確認しようとしています。そうであれば、ボタンが選択または押されたことをユーザーに知らせる方法を提供する必要があります。

4

3 に答える 3

0

解決策として、視覚効果を示すために絵文字を使用できます。ユーザーがインラインボタンを押した後、メッセージを編集し、そのボタンに相対的な絵文字を追加して、サーバーのフィードバックをユーザーに通知します。

于 2016-11-23T11:28:36.023 に答える