我需要检索后面的任何字符串,并在下面的类中/
检索该字符串。GetPost
例如:下面的应用程序/test123
中/blah
的等应该去上课GetPost
。
如何在下面的代码中实现上述要求?我需要导入任何模块吗?
class GetPost(webapp2.RequestHandler):
def get(self):
self.response.write("Permalink")
app = webapp2.WSGIApplication([
('/', HomePage),
('/new-post', NewPost),
('/create-post', CreatePost),
('/.+', GetPost)
], debug=True);