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

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

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

通过CGI程序传递下拉数据

HTML 下拉框代码如下:

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

<!DOCTYPE html>

<html>
<head>
<metacharset="utf-8">
<title>菜鸟教程(runoob.com)</title>
</head>
<body>
<formaction="/cgi-bin/dropdown.py"method="post"target="_blank">
<selectname="dropdown">
<optionvalue="runoob"selected>菜鸟教程</option>
<optionvalue="google">Google</option>
</select>
<inputtype="submit"value="提交"/>
</form>
</body>
</html>

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

#!/usr/bin/python3

# 引入 CGI 处理模块
importcgi,cgitb

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

# 接收字段数据
ifform.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 权限:

chmod755dropdown.py

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

发布于 2022-04-03 22:35:02
收藏
分享
海报
0 条评论
21
上一篇:Cookie怎么设置 下一篇:怎么通过CGI程序传递Textarea数据
目录

    0 条评论

    本站已关闭游客评论,请登录或者注册后再评论吧~

    忘记密码?

    图形验证码