当前位置: 首页>>代码示例>>Python>>正文


Python ExampleModel.all方法代码示例

本文整理汇总了Python中models.ExampleModel.all方法的典型用法代码示例。如果您正苦于以下问题:Python ExampleModel.all方法的具体用法?Python ExampleModel.all怎么用?Python ExampleModel.all使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在models.ExampleModel的用法示例。


在下文中一共展示了ExampleModel.all方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: list_examples

# 需要导入模块: from models import ExampleModel [as 别名]
# 或者: from models.ExampleModel import all [as 别名]
def list_examples():
    """List all examples"""
    examples = ExampleModel.all()
    form = ExampleForm()
    if form.validate_on_submit():
        example = ExampleModel(
            example_name=form.example_name.data,
            example_description=form.example_description.data,
            added_by=users.get_current_user(),
        )
        try:
            example.put()
            example_id = example.key().id()
            flash(u"Example %s successfully saved." % example_id, "success")
            return redirect(url_for("list_examples"))
        except CapabilityDisabledError:
            flash(u"App Engine Datastore is currently in read-only mode.", "info")
            return redirect(url_for("list_examples"))
    return render_template("list_examples.html", examples=examples, form=form)
开发者ID:cenzino,项目名称:vp-gae,代码行数:21,代码来源:views.py

示例2: list_examples

# 需要导入模块: from models import ExampleModel [as 别名]
# 或者: from models.ExampleModel import all [as 别名]
def list_examples():
    """List all examples"""
    examples = ExampleModel.all()
    return render_template('list_examples.html', examples=examples)
开发者ID:cloudappsetup,项目名称:flask-appengine-template,代码行数:6,代码来源:views.py


注:本文中的models.ExampleModel.all方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。