千家信息网

怎么通过CGI程序传递下拉数据

发表于:2024-11-14 作者:千家信息网编辑
千家信息网最后更新 2024年11月14日,这篇文章主要介绍"怎么通过CGI程序传递下拉数据",在日常操作中,相信很多人在怎么通过CGI程序传递下拉数据问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答"怎么通过CGI
千家信息网最后更新 2024年11月14日怎么通过CGI程序传递下拉数据

这篇文章主要介绍"怎么通过CGI程序传递下拉数据",在日常操作中,相信很多人在怎么通过CGI程序传递下拉数据问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答"怎么通过CGI程序传递下拉数据"的疑惑有所帮助!接下来,请跟着小编一起来学习吧!

通过CGI程序传递下拉数据

HTML 下拉框代码如下:


<html>
<head>
<meta charset="utf-8">
<title>菜鸟教程(runoob.com)</title>
</head>
<body>
<form action="/cgi-bin/dropdown.py" method="post" target="_blank">
<select name="dropdown">
<option value="runoob" 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 ("")
print ("")
print ("\"utf-8\">")
print ("菜鸟教程 CGI 测试实例")
print ("")
print ("")
print ("

选中的选项是:%s

" % dropdown_value)
print ("")
print ("")

修改 dropdown.py 权限:

chmod 755 dropdown.py

到此,关于"怎么通过CGI程序传递下拉数据"的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注网站,小编会继续努力为大家带来更多实用的文章!

0