广州北大青鸟计算机职业培训学校
互联网技术培训、软件技术培训、大数据培训、云计算培训、数据分析培训信息网
当前位置:网站首页 > 软件教程 > Python技术 > 正文

Python3通过CGI程序传递下拉数据_惠州计算机Python软件开发

作者:黄君发布时间:2021-01-13分类:Python技术浏览:1007


导读:HTML 下拉框代码如下:

HTML 下拉框代码如下:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>北大青鸟(bdqn.com)</title>
</head>
<body>
<form action="/cgi-bin/dropdown.py" method="post" target="_blank">
<select name="dropdown">
<option value="bdqn" selected>北大青鸟</option>
<option value="google">Google</option>
</select><input type="submit" value="提交"/>
</form>
</body>
</html>

dropdown.py 脚本代码如下所示:

#!/usr/bin/python3

# 引入 CGI 处理模块 
import cgi, cgitb 

# 创建 FieldStorage的实例 
form = cgi.FieldStorage() 

# 接收字段数据
if form.getvalue('dropdown'):
   dropdown_value = form.getvalue('dropdown')
else:
   dropdown_value = "没有内容"
   
print ("Content-type:text/html")
print ()print ("<html>")
print ("<head>")
print ("<meta charset=\"utf-8\">")
print ("<title>北大青鸟 CGI 测试实例</title>")
print ("</head>")print ("<body>")
print ("<h2> 选中的选项是:%s</h2>" % dropdown_value)
print ("</body>")
print ("</html>")

修改 dropdown.py 权限:

chmod 755 dropdown.py


点击咨询直接了解更多相关资料,我在惠州北大青鸟新方舟等你。

343.jpg

标签:惠州计算机软件培训惠州计算件软件开发惠州计算机软件基础惠州计算机Python软件开发惠州Python培训


Python技术排行
标签列表
网站分类
文章归档
最近发表