Hello I am learning webapp2 , my doubt is there are three pages 1: /blog for viewing all the blogs posted which are linked to their permalink 2: /blog/newpost for getting the newpost for blog , it contains only title and blog as input while user clicks on submit button it redirects to some permalink(this works!!!) 3: and last is /blog/(somepermalink) where user is redirected to this page in step 2
My probelm is first page gives all the list of blogs created and when user clicks on some blog i want to redirect to step 3 but unfortunately it gives me 404 error Here are my codes
class Handler(webapp2.RequestHandler):
def write(self, *a, **kw):
self.response.out.write(*a, **kw)
def render_str(self, template, **params):
t = jinja_env.get_template(template)
return t.render(params)
def render(self, template, **kw):
self.write(self.render_str(template, **kw))
class Blog(db.Model):
title = db.StringProperty(required = True)
blog = db.TextProperty(required = True)
created = db.DateTimeProperty(auto_now_add = True)
class MainPage(Handler):
def render_front(self, title="", blog="", error=""):
self.render("newpost.html", title=title, blog=blog, error=error)
def get(self):
self.render_front()
def post(self):
title = self.request.get("title")
blog = self.request.get("blog")
if title and blog:
a = Blog(title=title, blog=blog)
a_key = a.put()
#sleep is used because of replication lag time
sleep(0.1)
#redirect to some permalink
self.redirect("/blog/%d" % a_key.id())
else:
error = "both title and post are needed"
self.render_front(title, blog, error)
class BlogPostHandler(Handler):
def render_blog(self, title="", blogs=""):
blogs = db.GqlQuery("SELECT * FROM Blog ORDER BY created DESC")
self.render("blogpage.html", title=title, blogs=blogs)
def get(self):
self.render_blog()
class PermaLink(MainPage):
def get(self, blog_id):
s = Blog.get_by_id(int(blog_id))
self.render("blogpage.html", blogs = [s])
app = webapp2.WSGIApplication([('/blog',BlogPostHandler),
('/blog/newpost',MainPage),
('/blog/(\d+)', PermaLink)],
There is nothing obvious in the code you provided to indicate that there's a bug. Since the redirect in your
MainPage
request handler does properly redirect and load a blog post, I suspect that the problem is in how you are creating links within the jinja2 template used byBlogPostHandler
. Here are a few things to look out for:/blog/
instead of/blogs/
(plural)./blog/ 1234
.href="/blog/{{ post.id }}"
(leading/
)href="blog/{{ post.id }}"
(no leading/
, which would link to/blog/blog/<id>
)/blog/1234
/blog/1234L