class Test(object):
def GET(self):
index = web.template.frender('templates/index.html')
try:
return index("hello word","zhangsan")
except Exception as e:
print (e.message)报错
__template__() takes no arguments (2 given)
get()方法是不是要加2个变量?