我是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函数添加一个随机参数时,页面就可以运行,但在其他方面就不能。如果有人能指出这里出了什么问题,那就太好了。
(.*)
将用作第二个参数,更改您的代码
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