开发者

Is it possible to retrieve an uri chunk on AppEngine?

Let's say i go to myblog.com/post/12. The /post handler is开发者_JAVA百科 already defined, but how can i get the parameter being passed? 12 in this case is the post_id.

I'm using the Python SDK.


Sure.

Example rule:

('/post/(\d+)', views.PostHandler)

Example view:

class PostHandler(BaseHandler):
    ''' Handler for viewing blog posts. '''
    def get(self, id):
        blog_post = models.BlogPost.get_by_id(int(id))
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜