问答详情
源自:2-6 响应处理

__template__() takes no arguments (2 given)

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)


提问者:旧街深港 2020-11-12 15:11

个回答

  • 慕先生8842333
    2021-10-06 10:54:01

    get()方法是不是要加2个变量?