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.
在 PHP 中,我只写:
$bob = $_POST['bob'];
我如何在 Python 中做同样的事情?
是的,我通常会检查它是否存在等,我只是将它专门剥离为我所追求的功能。
最简单的方法是“cgi”模块:
import cgi data = cgi.FieldStorage() data['bob']
但是您正在执行的上下文(您正在使用的框架、WSGI 甚至(天堂禁止)mod_python)可能具有不同的、更有效或更直接的访问方法。