修复当没有找到文章或者文章读完时,直接刷新页面或者session不关闭重新进入页面,导致的错误;

Bug509-XieQiuHan-WangZiming
王梓铭 2023-04-25 11:38:01 +08:00
parent fc3e27488b
commit 6be035f282
1 changed files with 3 additions and 0 deletions

View File

@ -42,6 +42,9 @@ def get_today_article(user_word_list, had_read_articles):
if had_read_articles["index"] > len(had_read_articles["article_ids"])-1: # 生成新的文章,因此查找所有的文章
rq.instructions("SELECT * FROM article")
else: # 生成阅读过的文章,因此查询指定 article_id 的文章
if had_read_articles["article_ids"][had_read_articles["index"]] == 'null': # 可能因为直接刷新页面导致直接去查询了'null',因此当刷新的页面的时候,需要直接进行“上一篇”操作
had_read_articles["index"] -= 1
had_read_articles["article_ids"].pop()
rq.instructions('SELECT * FROM article WHERE article_id=%d' % (had_read_articles["article_ids"][had_read_articles["index"]]))
rq.do()
result = rq.get_results()