の後に来る文字/
列を取得し、その文字列をGetPost
以下のクラスで取得する必要があります。例:以下のアプリの 、 などは class に移動する必要があり/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);