当前位置: 首页 > 工具软件 > web.py > 使用案例 >

web.py 小试

茹轩昂
2023-12-01



网上看到很多web.py的列子,自己写了一个接收请求参数的,就为自己做下笔记。如有能帮助到读者的那也蛮好。


import web
urls = (  
     '/tom', 'index'    )
app = web.application(urls, globals())
class index:
    def GET(self):
        i = web.input()
        if hasattr(i, 't'):
            return "name=",i.t
        else:
            return "has not t"
        
if __name__ == "__main__":
    app.run()

打开: http://localhost:8080/tom?t1=99  试试

 类似资料: