python-使用Telegram- InlineKeyboardMarkup,当按下按钮时,是否可以向用户提供反馈?
作者:互联网
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 ( )
我正在尝试查看是否可以做出选择题,如果可以,我需要提供一种让用户知道按钮已被选择或按下的方法.
解决方法:
是的,您可以使用用户所做的选择来更新(编辑)当前消息文本,这是对用户与内联按钮进行交互时的简单快速的视觉反馈.
您可以为此使用editXXX方法.
查看https://core.telegram.org/bots/api#updating-messages
editMessageText-在inlinekeyboard之前更改消息文本
editMessageReplyMarkup-更改为新的嵌入式键盘
标签:telegram-bot,telegram,python-telegram-bot,python 来源: https://codeday.me/bug/20191112/2024077.html