我正在使用slugify,並且我不知道如何讓我的帖子標題重新開始,我是否需要在我的帖子中創建一個新列?我一整天都被困在這裏。你怎麼slugify一個網址?
有什麼建議嗎?
Views.py
@app.route('/posts/<title>')
@login_required
def show(title):
link = db.session.query(Post).filter_by(title = title).one()
link2 = slugify(link.title)
return render_template("post.html", post=link2, pid=id, title=link2)
Models.py
class Post(db.Model):
__tablename__ = "posts"
id = db.Column(db.Integer, primary_key=True)
title = db.Column(db.String(80))
body = db.Column(db.Text)
def __init__(self, title, body):
self.title = title
self.body = body
錯誤信息
File "C:\Program Files\Python35-32\lib\site-packages\sqlalchemy\orm\query.py", line 2760, in one
raise orm_exc.NoResultFound("No row was found for one()")
sqlalchemy.orm.exc.NoResultFound: No row was found for one()
嘗試洛'title'。它是否被正確接收? –
錯誤只是說它找不到任何行,而您期望一行。我通常使用'Post.query.filter_by(title = title).first()',然後檢查結果是否爲null。 –
@btquanto你能改說我不明白嗎? –