gpt4 book ai didi

python - HTML 表单 POST 到 python 脚本?

转载 作者:技术小花猫 更新时间:2023-10-29 12:27:14 25 4
gpt4 key购买 nike

有谁知道有关如何将 HTML 表单中的数据发布到 Python 脚本的信息的任何好的资源?

最佳答案

对于一个非常基本的 CGI脚本,您可以使用 cgi module .查看 Python 文档中的以下文章,了解有关如何处理通过 POST 提交的 HTML 表单的非常基本的示例:

上面文章的例子:

#!/usr/bin/env python

import cgi
import cgitb; cgitb.enable() # for troubleshooting

print "Content-type: text/html"
print

print """
<html>

<head><title>Sample CGI Script</title></head>

<body>

<h3> Sample CGI Script </h3>
"""

form = cgi.FieldStorage()
message = form.getvalue("message", "(no message)")

print """

<p>Previous message: %s</p>

<p>form

<form method="post" action="index.cgi">
<p>message: <input type="text" name="message"/></p>
</form>

</body>

</html>
""" % message

关于python - HTML 表单 POST 到 python 脚本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3862788/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com