如何在Webapp2上获得所有Auth用户?

时间:2013-07-17 19:22:11

标签: python google-app-engine webapp2

我正在制作管理工具,我需要在webapp2上列出所有auth用户。问题是auth模型的User模型没有all()方法。

那么,我怎样才能让所有用户都使用webapp2?

1 个答案:

答案 0 :(得分:1)

编辑以显示更完整的示例:

from webapp2_extras.appengine.auth.models import User
class UserHandler(BaseHandler):
    def get(self):
        users = User.query().fetch()
        self.render_response('templates/users.html', locals())

在模板users.html中,您可以遍历users变量。

我的BaseHandler包含用于呈现模板的方法render_response()