标签: python web url flask blogs
@posts.route("/post/<int:post_id>") def post(post_id): post = Post.query.get_or_404(post_id) return render_template('post.html', title=post.title, post=post)
这是输出URL
/post/12
但是我想要这样的东西
/post/12/test-user-post