我正在尝试将外部模块导入到我的web2py应用程序的控制器代码中。我要导入的模块位于myapp / modules中,似乎可以正常导入。但是,它不允许我调用其中定义的任何函数。给出以下错误 “模块”对象没有属性“ testfunc”
我这样输入:
import json_utils as u
像这样调用:
u.testfunc()
我在这里遗漏明显的东西吗?我尝试停止/启动服务器以防万一其未重新加载文件。
干杯
编辑:这是整个json_utils.py文件:
def testfunc():
return 3
def testfunc2():
# some stuff
return 5
相关分类