首页 > 解决方案 > peewee playhouse.flask_utils import object_list 在首页什么都没有出现

问题描述

我正在尝试使用 peewee flask utils,但我不知道出了什么问题。它没有显示任何东西。

这是代码:

后端: https ://i.stack.imgur.com/sdPoU.png

浏览器显示:https ://i.stack.imgur.com/PThzr.png

html代码:https ://i.stack.imgur.com/mQqah.png

标签: python-3.xpeeweeflask-peewee

解决方案


如果您费心阅读文档,您会看到上下文变量名为object_list.

http://docs.peewee-orm.com/en/latest/peewee/playhouse.html#object_list

你写for article in article的完全没有意义

你应该写for article in object_list


推荐阅读