我的python脚本不会在具有POST方法的html表单上设置名称和年龄 是否可以在python中处理html表单 HTML脚本:
<html>
<form action="action.php" method="post">
<p>Votre Nom : <input type="text" name="nom" /></p>
<p>Votre Age : <input type="text" name="age" /></p>
<p><input type="submit" value="OK"></p>
</form>
</html>
PYTHON脚本:
import urllib.request, urllib.parse, socket
data = urllib.parse.urlencode({"nom":"joe", "age":"17"}).encode('utf-8')
req = urllib.request.Request("http://127.0.0.1/index.html", data=data)
res = urllib.request.urlopen(req).read().decode()
在终端中运行脚本后,我得到的是相同的html代码