我正在使用django表单,你可以在view.py文件中看到,结果是有一个文本框。我可以提交值数字,然后使用这些数字来运行script.py等我想做的与范围输入而不是文本相同,这样每次滑块上的值都会改变。
我的views.py
def get_name(request):
form = NameForm()
if request.method == 'POST':
a = request.POST['your_name'] # do somethink with the value entered in the form
print(a)
a = int(a)
while a>0:
print(a)
a = a -1
return render(request, 'personal/code2.html', {'form': form})
我的code2.html
{% extends "personal/header.html" %}
{% block content %}
<form action="" method="POST">
{% csrf_token %}
{{form}}
</form>
{% endblock %}
我的forms.py
from django import forms
class NameForm(forms.Form):
your_name = forms.DurationField(label='% Brightness ')