django 1.11 -如何在视图中获取无线电动态名称?

mgdq6dx1  于 2023-05-23  发布在  Go
关注(0)|答案(1)|浏览(132)

这是我的模板代码,我不知道如何在view.py中获取输入名称,我该怎么办?

{% for visitor in visitors %}
<label class="btn btn-secondary {% if visitor.is_vip == True %}active{% endif %}">
	<input type="radio" name="{{visitor.face_id}}" value="vip" {% if visitor.is_vip == True %}checked{% endif %}> VIP
</label>
<label class="btn btn-secondary {% if visitor.is_black == True %}active{% endif %}">
	<input type="radio" name="{{visitor.face_id}}" value="black" {% if visitor.is_black == True %}checked{% endif %} > Black
</label>
<label class="btn btn-secondary {% if visitor.is_vip != True and visitor.is_black != True %}active{% endif %}"> 
	<input type="radio" name="{{visitor.face_id}}" value="guest" {% if visitor.is_vip != True and visitor.is_black != True %}checked{% endif %} > Guest
</label>
{% endfor %}
yebdmbv4

yebdmbv41#

如果我理解你的意思,你可以在视图中使用:

request.POST.get('name_of_your_input')

相关问题