weijiang1994 / Blogin

A blog system depend on flask.使用flask框架开发的个人博客系统.
https://2dogz.cn
GNU General Public License v3.0
509 stars 99 forks source link

插入数据问题 #12

Closed T485556595 closed 3 years ago

T485556595 commented 3 years ago

我发现前台中每日一句板块中无法加载,研究了下源代码中发现根本未插入到数据库中,测试了下代码发现 Snipaste_2021-08-25_16-58-32

weijiang1994 commented 3 years ago

每日一句是通过定时任务自动插入的,你这样执行不再flask的上下文环境中,肯定会出错的。 每日一句的插入方式具体实现如下 https://github.com/weijiang1994/Blogin/blob/6e8b4df992380e8723a25eddaf78c38ba199e0c7/blogin/task.py#L30

weijiang1994 commented 3 years ago

因为我的服务运行在服务器上面,服务每时每刻都会运行,因此不会出问题。你在本地测试的话,可以手动在数据库中插入几条数据进去,日期字段对上就好了。