第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

Flask+SQLAlchemy 在嘗試按外鍵列過(guò)濾記錄時(shí)拋出 OperationalError

Flask+SQLAlchemy 在嘗試按外鍵列過(guò)濾記錄時(shí)拋出 OperationalError

qq_遁去的一_1 2023-06-13 10:53:26
因此,作為個(gè)人項(xiàng)目,我正在開(kāi)發(fā)一個(gè)小型博客風(fēng)格的 Web 應(yīng)用程序。我現(xiàn)在已經(jīng)基本可以正常工作了,但是我在嘗試對(duì)帖子發(fā)表評(píng)論時(shí)遇到了麻煩。我設(shè)置帖子的方式是通過(guò) SQLAlchemy ORM 模型,效果很好。它有內(nèi)容和標(biāo)題字段等等,以及與帖子作者的多對(duì)一關(guān)系,如下所示:class Post(db.Model):    id = db.Column(db.Integer, primary_key = True)    title = db.Column(db.String(100), nullable=False)    date_posted = db.Column(db.DateTime, nullable=False, default=datetime.utcnow)    content = db.Column(db.Text, nullable=False)    feature_image = db.Column(db.String, nullable=True)    user_id = db.Column(db.Integer, db.ForeignKey('user.id'), nullable=False)    comments = db.relationship('Comment', backref='original_post', lazy=True)我的評(píng)論遵循相同的結(jié)構(gòu),與帖子具有多對(duì)一的關(guān)系,如下所示:class Comment(db.Model):    id = db.Column(db.Integer, primary_key = True)    date_posted = db.Column(db.DateTime, nullable=False, default=datetime.utcnow)    content = db.Column(db.Text, nullable=False)    post_id = db.Column(db.Integer, db.ForeignKey('post.id'), nullable=False)    user_id = db.Column(db.Integer, db.ForeignKey('user.id'), nullable=False)因此,為了讓評(píng)論顯示在帖子下方,我試圖查詢“評(píng)論”表并從“帖子”表中過(guò)濾“post_id”,它應(yīng)該與 post.id 相匹配:@app.route('/post/<int:post_id>')def post(post_id):    post = Post.query.get_or_404(post_id)    comments = Comment.query.filter(Comment.original_post==post)但是當(dāng)我嘗試加載帖子頁(yè)面時(shí),它會(huì)拋出以下錯(cuò)誤:sqlalchemy.exc.OperationalError: (sqlite3.OperationalError) no such column: comment.post_id[SQL: SELECT comment.id AS comment_id, comment.date_posted AS comment_date_posted, comment.content AS comment_content, comment.post_id AS comment_post_id, comment.user_id AS comment_user_id FROM comment WHERE ? = comment.post_id][parameters: (1,)](Background on this error at: http://sqlalche.me/e/e3q8)我查看了有關(guān)該主題的其他一些主題,建議在查詢之前使用 .join ,如下所示:comments = Comment.query.join(Post).filter(Post.id == post_id).all()
查看完整描述

1 回答

?
狐的傳說(shuō)

TA貢獻(xiàn)1804條經(jīng)驗(yàn) 獲得超3個(gè)贊

在 db 文件中的“評(píng)論”表只是缺少外鍵字段。



查看完整回答
反對(duì) 回復(fù) 2023-06-13
  • 1 回答
  • 0 關(guān)注
  • 150 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)