Flask web开发的关注文章部分,属性方法followed_posts调用无效,shell里指令直接写入user.id有效?

在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 = ?'

一样的,代码是肯定没有打错


请教如何解决这个问题?

阅读 3.2k
2 个回答

后来解决了
把我在控制台打的

Post.query.join(Follow, Follow.followed_id == Post.author_id)\
             .filter(Follow.follower_id == cat.id)

复制黏贴过去,把cat改为self,变为我之前打的一样的代码
然后就OK了...


但我之前千真万确打得是

Post.query.join(Follow, Follow.followed_id == Post.author_id)\
             .filter(Follow.follower_id == self.id)

反复检查了很多次的

查询语句没有问题,是不是前提条件没有做好,比如该用户并没有关注过任何人???
看看我的:

clipboard.png

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题