我正在网上搜索,但找不到答案。
我有以下HTML表单:
<form action="/funcation_create_call" method="post">
<div class="form-group">
<label for="user1">Select a Provider</label>
<select name="user1" class="form-control" id="user1">
<option val="3">MCI MCI</option>
</select>
</div>
<div class="form-group">
<label for="user2">Select a Receiver</label>
<select name="user2" class="form-control" id="user2">
<option val="2">Sam San</option>
</select>
</div>
<button class="btn btn-primary btn-lg btn-block" type="submit">Call!</button>
</form>
以及以下Python代码:
代码:request.form.get('user1')
我的目标是能够从option元素中提取 val 属性(例如3),但我总是得到元素文本(例如MCI MCI)
任何帮助将不胜感激!