get_data获取的结果里排除当前文章

Hi,

我想实现类似Related posts功能,推荐同一个分类或标签中的其他文章。通过get_data顺利调出同分类下的文章了,但有可能跟当前文章重复,请问有否办法把当前文章排除?谢谢~

cat_posts = d.get_data(types='post', limit=5, path=post.category.path)

for post in cat_posts: div

a(href=post.url)= post.title

网址:https://shuibaco.bitcron.com/comment-test

2017-10-16 22:16 from Shui Baco
Comments
Write a Comment
  • Hepo reply

    @Shui Baco, https://api.bitcron.com/read/d

    d.get_data(types='post', limit=5, path=post.category.path, excludes=[post.path])

    • @Hepo 谢谢,我之前用excludes试了post.url和post.url_path没用,看来还是理解错了。