gpt4 book ai didi

python - 身份验证在模块中不可用

转载 作者:行者123 更新时间:2023-11-30 23:30:04 25 4
gpt4 key购买 nike

我有一个 web2py 应用程序,我在其中编写了各种包含业务逻辑和数据库相关内容的模块。在其中一个文件中,我尝试访问 auth.settings.table_user_name ,但它不起作用并抛出错误,因为未定义全局名称“auth”。如果我在 Controller 中写入相同的行,它就可以工作。但我希望在模块文件中访问它。请建议我该怎么做。

最佳答案

在模型文件中定义auth:

from gluon import current

auth = Auth(db)
current.auth = auth

然后在模块中:

from gluon import current

def some_function():
auth = current.auth
....

更多详情,请参阅 http://web2py.com/books/default/chapter/29/04/the-core#Accessing-the-API-from-Python-modules .

关于python - 身份验证在模块中不可用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20856854/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com