假设我在表单中有以下 HTML 输入元素:
<input name="title_input" type="text" id="missing_value" title="Title">
如果我想提交 POST:
s = requests.Session()
s.get(url)
postResult = s.post(url, {'title_input':'This Is the Name of the Title'})
即使元素具有缺失值属性,此 POST 是否仍能正常工作?
value="This Is The Name of the Title"
即,即使原始 HTML 中缺少元素,Python 是否会附加到元素中?