首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

web.py札记ctx

2012-09-09 
web.py笔记ctxhttp://webpy.org/cookbook/ctx?这个东西蛮朴素的。。。?import weburls (/(.*), hello)a

web.py笔记ctx

http://webpy.org/cookbook/ctx

?

这个东西蛮朴素的。。。

?

import web        urls = (    '/(.*)', 'hello')app = web.application(urls, globals())class hello:            def GET(self, name):                client = [ web.ctx.env.get('HTTP_REFERER', 'http://google.com') ,        web.ctx.ip ,        web.ctx.host ,        web.ctx.status ,        web.ctx.headers        ]                         return clientif __name__ == "__main__":    app.run()
?

热点排行