我想在通过Google App Engine for Python运行的应用上弹出一条警告消息,以便进行错误处理。
我已经尝试了这个但没有工作:
from Tkinter import *
msg = Message(text="Please, make sure you fill out the boxes and agree with the terms")
msg.config(bg='green', font=('times', 16))
msg.pack()
mainloop()
和
import win32api
win32api.MessageBox(0, 'hello', 'title')
我猜测Google App Engine有自己的方式来处理这项任务,但我无法弄清楚如何。
谢谢!
答案 0 :(得分:1)
你不能这样做。 GAE服务器假设无头运行,因此您无法在主机中显示弹出窗口。如果您使用Windows启动de dev服务器,只需使用GUI中的日志按钮或从命令行启动您的开发服务器。
要从您的应用程序生成调试日志,您只需查看此帖子即可。 Google app engine logging in dev consol
在制作过程中,您的应用程序有一个完整的管理面板,有很多可能性,还有一个日志记录盘,可以查看您应用中的所有消息。