我有一个简单的python烧瓶项目,我需要在进行任何操作之前获得用户确认。
...
#need to confirm from the user before the action takes place. If it is yes, continue with action(), else skip action
#I need to keep monitoring the confirm_var here
action()
...
在收到用户的确认后,我调用此confirmation()
函数来使用AJAX调用设置confirm_var。
def confirmation()
#set confirm_var to yes/no depending on user input.
所以,我的问题是如何继续监控confirm_var
。