Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我必须从浏览器接收 POST 数据到 python 文件。假设我想发布用户名和用户 ID 我正在使用 Python 和 mod_python 。所以请有人告诉我如何通过浏览器发布数据作为查询以及如何在 py 文件中接收它。我是 python 新手。
我建议你放弃 mod_python,因为它早已被弃用。使用类似 Flask 的东西(使用 mod_wsgi)。
from flask import Flask, request app = Flask(__name__) @app.route('/', methods="POST") def hello_post(): # if we have a form if request.form: ... if __name__ == '__main__': app.run()