GET()接受1个位置参数,但给出了2个位置

时间:2018-11-17 04:08:36

标签: python web.py positional-parameter

我是web.py的新手,我尝试制作一个简单的应用程序,在其中检索HTML文件并显示它。

这是我完整的代码:

import web

render = web.template.render('templates/')

urls = (
    '/(.*)', 'index'
)

class index:
    def GET(self):
        return render.index()

if __name__ == "__main__":
    app = web.application(urls, globals())
    app.run()

运行此命令时,出现错误消息:

  

<class 'TypeError'>位于/

     

GET()接受1个位置参数,但给出了2个

每当我向GET函数添加一个随机参数时,页面就可以运行,否则无法运行。如果有人可以指出这里出了什么问题,那就太好了。

谢谢。

1 个答案:

答案 0 :(得分:1)

(.*)将用作第二个参数,更改代码

class index:
    def GET(self, name):
        return render.index(name)

和模板index.html

$def with (name)
<html>
<head>
    <title>Hello $name</title>
</head>
<body>
Hello $name
</body>
</html>

现在尝试打开http://127.0.0.1:8080/John