我想創建一個臨時頁面,瀏覽器在那裏逗留幾秒鐘,然後重定向到另一個頁面。在Google App Engine上使用python。我認爲下面應該工作(我是這個總新手),但顯然它沒有。臨時頁面,而谷歌應用引擎上的重定向
class TempPage(PageHandler):
def get(self):
self.response.write("You will be redirected to the Front page.")
time.sleep(3)
self.redirect('/')
PageHandler繼承自webapp2.RequestHandler。
有人可以告訴我應該做什麼。
感謝
這是http://stackoverflow.com/questions/5203378/gae-redirection-with-a-delay – OJFord