博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Python一课一练(表单提交)
阅读量:5936 次
发布时间:2019-06-19

本文共 1908 字,大约阅读时间需要 6 分钟。

hot3.png

1. 第一种表单提交方式是在链接里把要传入的参数放进去:*********************************python代码app3.py:# -*- coding: utf-8 -*-import web# 1.表单提交涉及到具体的资源路径,在url里定义好,此处我们放到根目录hello目录下urls = (    '/hello', 'index')app = web.application(urls, globals())render = web.template.render('templates/')class index(object):    def GET(self):        # input方法内需要对应好在链接内输入的key ,比如:http://localhost:8080/hello?content=lw中的content        # input同样支持输入多个key,value参数,web.input(content = 'Nobody', name = 'lw')        form = web.input(content = 'Nobody')        greeting = "Hello, %s" % form.content        # 记得调用render渲染后需要把返回值return回来        return render.index3(content = greeting)if __name__ == "__main__":    app.run()*********************************index3.html代码:$def with (content)  This is title          $if content:          I just wanted to say $content.      $else:          Hello, world!    2.第二种Post提交表单的方式,第一种方式我们用到app.py和index3.html两个文件,对于Post提交表单,app.py我们需要修改一下,而index3.html则不需要,此外还需要一个hello_form3.html文件。*********************************app.py文件:# -*- coding: utf-8 -*-import web# 1.表单提交涉及到具体的资源路径,在url里定义好,此处我们放到根目录hello目录下urls = (    '/hello', 'index')app = web.application(urls, globals())render = web.template.render('templates/')class index(object):    # 1.首先浏览器执行Get方法,加载hello_form3.html文件并返回。    def GET(self):        return render.hello_form3()    # 2.填写完表单点击提交后,浏览器通过POST方式把表单数据传给web程序,并执行render.index3()返回     def POST(self):        form = web.input(content = "NoContent", name = "NoName")        greeting = "content = %s, name = %s" % (form.content, form.name)        return render.index3(greeting)if __name__ == "__main__":    app.run()*********************************hello_form3.html文件    Sample Web Form            

Fill out this form

Input Greeting:
Input Name:

转载于:https://my.oschina.net/lengwei/blog/811046

你可能感兴趣的文章
网站分析系统
查看>>
一站式解决,Android 拍照 图库的各种问题
查看>>
从零开始来看一下Java泛型的设计
查看>>
Shell编程基础
查看>>
Shell之Sed常用用法
查看>>
3.1
查看>>
校验表单如何摆脱 if else ?
查看>>
Good Bye 2013 A
查看>>
JS敏感信息泄露:不容忽视的WEB漏洞
查看>>
让我们荡起双桨,Android 小船波浪动画
查看>>
ApacheCN 翻译活动进度公告 2019.2.18
查看>>
分布式memcached服务器代理magent安装配置(CentOS6.6)
查看>>
Create Volume 操作(Part III) - 每天5分钟玩转 OpenStack(52)
查看>>
KSImageNamed-Xcode-master
查看>>
tomcat 8.0虚拟机配置文档
查看>>
轻松实现基于Heartbeat的高可用web服务集群
查看>>
pxc群集搭建
查看>>
JS中加载cssText延时
查看>>
常用的脚本编程知识点
查看>>
XILINX_zynq_详解(6)
查看>>