在Flask的关注文章部分
Model中的User的熟悉方法followed_posts可以调出用户关注的文章
class User(UserMixin, db.Model)
# ...
@property
def followed_posts(self):
return Post.query.join(Follow, Follow.followed_id == Post.author_id)\
.filter(Follow.followed_id == self.id)
我在试验中,关注文章没有正常显示
找哪里出了问题
在python manage.py shell
中测试
使用用户cat:cat=User.query.filter_by(username='cat').first()
直接将cat.id放在查询语句中:
Post.query.join(Follow, Follow.followed_id == Post.author_id)\
.filter(Follow.follower_id == cat.id)
post1.count()
20
返回20,没错,可以找到关注的文章
然后,直接调用属性方法:
post2=cat.followed_posts
post2.count()
0
返回0 ,没有找到文章
打印查询语句,看一下
>>> str(post1)
'SELECT posts.id AS posts_id, posts.body AS posts_body, posts.timestamp AS posts_timestamp, posts.author_id AS posts_author_id, posts.body_html AS posts_body_html \nFROM posts JOIN follows ON follows.followed_id = posts.author_id \nWHERE follows.follower_id = ?'
>>> str(post2)
'SELECT posts.id AS posts_id, posts.body AS posts_body, posts.timestamp AS posts_timestamp, posts.author_id AS posts_author_id, posts.body_html AS posts_body_html \nFROM posts JOIN follows ON follows.followed_id = posts.author_id \nWHERE follows.followed_id = ?'
一样的,代码是肯定没有打错
请教如何解决这个问题?
后来解决了
把我在控制台打的
复制黏贴过去,把cat改为self,变为我之前打的一样的代码
然后就OK了...
但我之前千真万确打得是
反复检查了很多次的