如何遍历web2py中列表中的方法/函数

时间:2014-06-27 16:50:11

标签: web2py

我的代码如下:

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中的所有函数?

0 个答案:

没有答案