我使用Web2py的基本Auth创建了用户
下面是代码
from gluon.tools import Auth, Crud, Service, PluginManager, prettydate
auth = Auth(db)
crud, service, plugins = Crud(db), Service(), PluginManager()
## create all tables needed by auth if not custom tables
auth.define_tables(username=False, signature=False)
然而DAL似乎无法识别基本的auth表,如何在 auth_user 表中检索单行或多行数据/行用户?????