私はJavaRESTのバックグラウンドからに来ていPython
ますGoogle App Engine's
。webapp2
path-parametersの使用についてサポートが必要です。以下は、Javaがリクエストを読み取る方法の例です。誰かがコードをPythonがどのように読み取るかを翻訳してくれwebapp2
ませんか?
// URL: my_dogs/user_id/{user_id}/dog_name/{a_name}/breed/{breed}/{weight}
@Path("my_dogs/user_id/{user_id}/dog_name/{a_name}/breed/{breed}/{weight}")
public Response getMyDog(
@PathParam("user_id") Integer id,
@PathParam("a_name") String name,
@PathParam("breed") String breed,
@PathParam("weight") String weight
){
//the variables are: id, name, breed, weight.
///use them somehow
}
私はすでにグーグルの例を調べました(https://developers.google.com/appengine/docs/python/gettingstartedpython27/usingwebapp)。しかし、私は単純なものを拡張する方法がわかりません
app = webapp2.WSGIApplication([('/', MainPage),
('/sign', Guestbook)],
debug=True)