-
1.模板 $def with() 跟普通html不同 2.创建模板文件夹 3.同名使用查看全部
-
web.py 请求处理函数查看全部
-
这章节的demo是个神器; 需要好好掌握;查看全部
-
web.py 响应处理查看全部
-
web.py 请求处理:请求参数&请求头查看全部
-
web请求流程查看全部
-
web.py url映射查看全部
-
还没有看查看全部
-
<html> <head> <title>hello</title> </head> <body> <h1>post</h1> <form action="/blog/123" method="POST" > <input type="text" name="userName" value=""/> <br> <input type="password" name="password" value=""/> <input type="submit" value = "submit"> </form> </body> </html>查看全部
-
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'2.html').read() if __name__ == "__main__": app.run()查看全部
-
Python语言是一款对缩进非常敏感的语言查看全部
-
import web urls = ( '/index','index', '/blog/\d+','blog', '/(.*)', 'hello', ) app = web.application(urls, globals()) class index: def GET (self): return 'index method' class blog: def GET (self): return 'blog method' def POST (self): return 'blog post method' class hello: def GET(self, name): return open(r'1.html','r').read() if __name__ == "__main__": app.run()查看全部
-
url 匹配从上到下 范围应该要从小到大的查看全部
-
py_web查看全部
-
url处理流程查看全部
举报
0/150
提交
取消