views:

23

answers:

1

Let's say i go to myblog.com/post/12. The /post handler is 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.

+3  A: 

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))
Adam Bernier
Works like a charm. Thank you. :)
Jorge
Cheers mate. Glad you got it working :-)
Adam Bernier