-
web开发基础
查看全部 -
web.py是什么:
查看全部 -
web.py介绍:
查看全部 -
学习内容:
查看全部 -
响应处理的
查看全部 -
请求处理方式
查看全部 -
安装web.py ,使用的是pip install web.py==0.40-dev1指令进行安装
查看全部 -
请求头获取
return web.ctx.env 获取请求中解析的信息 包括端口 域名
查看全部 -
pyweb响应处理
查看全部 -
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 def GET(self): return web.ctx.env class hello: def GET(self, name): return open(r'login.html').read() if __name__ == "__main__": app.run() #http://localhost:8080/index?name=python&age=18&city=shenzhen #http://localhost:8080/ #http://localhost:8080/blog/123?name=python
查看全部 -
pyweb请求处理
查看全部 -
pyweb请求流程
查看全部 -
import web urls = ( '/index','index', '/blog/\d+','blog', '/.(.*)','hello', ) app = web.application(urls, globals()) class index: #def GET(self): # return 'index method' def GET(self): return open(r'html5.html','r').read() class blog: def GET(self): return 'blog method' def POST(self): return 'blog post method' class hello: def GET(self,name): return 'hello ' + name if __name__ == "__main__": app.run() #http://localhost:8080/blog/76675667 #http://localhost:8080/index #http://localhost:8080/hello
查看全部 -
URL映射
查看全部 -
Web.py安装
查看全部
举报
0/150
提交
取消