__template__() takes no arguments (2 given)

来源:2-6 响应处理

旧街深港

2020-11-12 15:11

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)


写回答 关注

1回答

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

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

python-web.py开发入门

web.py开发入门入门教程,讲解一个你最快能学会的web开发的框架

58639 学习 · 106 问题

查看课程

相似问题