标签: web2py
我在web2py中有一个应用程序。我有两个控制器。现在我想调用从其他控制器在一个控制器中编写的方法。我该怎么做。
示例 - 在控制器1中:
def controller1method(): return 'something'
在控制器2中:
def controller2method(): # how do I call controller1method here
答案 0 :(得分:5)