1
有沒有辦法讓谷歌應用程序引擎處理程序處理所有未指定的網址?Google appengine multihandler
也許就像:
app = webapp2.WSGIApplication([
('/', MainHandler),
('/hello',HelloHandler),
('/bye',ByeHandler),
('for-everything-else',OtherHandler)
], debug=True)
現在請不要評論告訴我說,「換一切,否則」不能是一個url ..「爲如果這是正確的話,那麼「一切其他」只是一個存根 –