我的代码如下:
m = ['first_time', 'first_day']
t = times()
def this():
code.....
for item in m:
getattr(t, item)()
我尝试了另一种选择:
try:
return t.first_time()
return t.first_day()
except AttributeError, e:
return e.message
这些代码运行良好,但仅适用于第一种方法first_time()
。如何迭代web2py
中的m中的所有函数?