本文整理汇总了Python中models.Todo.all方法的典型用法代码示例。如果您正苦于以下问题:Python Todo.all方法的具体用法?Python Todo.all怎么用?Python Todo.all使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类models.Todo
的用法示例。
在下文中一共展示了Todo.all方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: route_index
# 需要导入模块: from models import Todo [as 别名]
# 或者: from models.Todo import all [as 别名]
def route_index():
headers = {
'Content-Type': 'text/html',
}
header = response_with_header(headers)
todos = Todo.all()
def todo_tag(todo):
status = todo.status()
tag = ('<p class="{}">{} {} @ {}'
'<a href="/todo/complete?id={}">完成</a></p>')
return tag.format(
status,
todo.id,
todo.content,
todo.created_time,
todo.id,
)
todo_html = '\n'.join([todo_tag(todo) for todo in todos])
body = template('todo_index.html', todos=todo_html)
r = header + '\r\n' + body
return r.encode(encoding='utf-8')
示例2: todo_list
# 需要导入模块: from models import Todo [as 别名]
# 或者: from models.Todo import all [as 别名]
def todo_list():
"""Simple todo page."""
form = TodoForm()
todos = Todo.all().order('-created_at')
return render_template('todo.html', form=form,
todos=todos)
示例3: retrieve_todos
# 需要导入模块: from models import Todo [as 别名]
# 或者: from models.Todo import all [as 别名]
def retrieve_todos():
content = json.dumps([todo.to_dict() for todo in Todo.all()])
response = make_response(content)
response.mimetype = 'application/json'
return response