-
(1.html) <html> <head> <title>hello</title> </head> <body> <h1>POST</h1> <form action = "/blog/123" method="POST"> <!--用POST方法,提交到blog开头的url里面,请求的内容有两个字段:username和password--> <input type="text" name="username" value=""/> <input type="password" name="password" value=""/> <input type="submit" value="submit"> </form> </body> </html>查看全部
-
(hello.py) import web urls = ( '/index', 'index', '/blog/\\d+', 'blog', '/(.*)', 'hello', ) app = web.application(urls, globals()) class index: def GET(self): query = web.input() return query class blog: def POST(self): data = web.input() return data class hello: def GET(self,name): return open(r'1.html').read() if __name__ == "__main__": app.run()查看全部
-
pip install web.py查看全部
-
web.py查看全部
-
加载模板同名文件查看全部
-
模板引入查看全部
-
响应处理查看全部
-
请求处理查看全部
-
SQL的使用查看全部
-
模板文件读取 render.index("参数") 结果数据获取 model.select("sql") URL跳转 web.seeother("/")查看全部
-
请求参数获取 web.input() 请求头获取 web.ctx.env查看全部
-
template查看全部
-
响应处理查看全部
-
post查看全部
-
html查看全部
举报
0/150
提交
取消