在 django 表单中使用 ajax 时,出现错误 "Select a valid choice. That is not one of the available choices."
While using ajax with django form, getting error "Select a valid choice. That is not one of the available choices."
我是 django 的新手。我正在使用简单的 ajax 在 course 选择的基础上动态更新选择字段 semester 。但是在提交表单时我收到错误 Select 一个有效的选择。 选择的选项不是可用选项之一。代码如下:
forms.py:
from django import forms
from feedback_form.models import course,section_info
class loginForm(forms.Form):
iquery1 = course.objects.values_list('course_name', flat = True)
iquery1_choices = [('', '----------')] + [(id, id) for id in iquery1]
sem_choices = [('', '----------')]
course_name = forms.ChoiceField(iquery1_choices,required=True, widget=forms.Select())
semester = forms.ChoiceField(sem_choices, required= True, widget=forms.Select())
views.py:
def get_batch(request, c_id):
current_course = feedback_form.models.course.objects.get(course_name=c_id)
batches = feedback_form.models.batch.objects.all().filter(course_id=current_course)
no_of_sem = feedback_form.models.course.objects.values_list('number_of_sem', flat=True).filter(course_id = current_course)
no_of_sem = int(no_of_sem[0])
batch_dict = {}
for batch in batches:
batch_dict[batch.batch_id] = batch.batch_id
sem = {}
sem[no_of_sem] = no_of_sem
data = [batch_dict, no_of_sem]
return HttpResponse(json.dumps(data))
loginForm.html:
<form action="" method="post">
<table>
{{ form.as_table }}
</table>
{% csrf_token%}
<input type="submit" value="Submit">
</form>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$('#id_course_name').change(function() {
request_url = 'login/get_batch/' + c_id + '/';
$.ajax({
url: request_url,
success: function(data){
data = $.parseJSON(data);
$('#id_semester').html('<option selected="' + "selected" + '">' + '' +'</option>');
for(var i = 1; i<=data[1]; i++) //data[1] contains no of sem
$('#id_semester').append('<option value="' + i + '">' + i +'</option>');
},
errors: function(e) {
alert(e);
}
})
})
请帮帮我。
问题是 ChoiceField
要求所选选项在其选择集中。
在上面的代码中,semester
的选择是通过 jquery 动态更新的。但是,这些选择不是 semester
的选择集的一部分,即 sem_choices
。因此问题。
要解决此问题,请使用 request.POST
方法将所选值包含在 sem_choices
中。
在views.py中:
form = loginForm(request.POST)
sem = request.POST.get('semester')
form.fields['semester'].choices = [(sem, sem)]
另一个解决方案是覆盖 ChoiceField 的 valid_value() 方法。如果您不担心表单可能 return 的可能值,那么它就这么简单:
class AjaxChoiceField(forms.ChoiceField):
def valid_value(self, value):
return True
或者您可以根据需要添加更多验证。
我是 django 的新手。我正在使用简单的 ajax 在 course 选择的基础上动态更新选择字段 semester 。但是在提交表单时我收到错误 Select 一个有效的选择。 选择的选项不是可用选项之一。代码如下:
forms.py:
from django import forms
from feedback_form.models import course,section_info
class loginForm(forms.Form):
iquery1 = course.objects.values_list('course_name', flat = True)
iquery1_choices = [('', '----------')] + [(id, id) for id in iquery1]
sem_choices = [('', '----------')]
course_name = forms.ChoiceField(iquery1_choices,required=True, widget=forms.Select())
semester = forms.ChoiceField(sem_choices, required= True, widget=forms.Select())
views.py:
def get_batch(request, c_id):
current_course = feedback_form.models.course.objects.get(course_name=c_id)
batches = feedback_form.models.batch.objects.all().filter(course_id=current_course)
no_of_sem = feedback_form.models.course.objects.values_list('number_of_sem', flat=True).filter(course_id = current_course)
no_of_sem = int(no_of_sem[0])
batch_dict = {}
for batch in batches:
batch_dict[batch.batch_id] = batch.batch_id
sem = {}
sem[no_of_sem] = no_of_sem
data = [batch_dict, no_of_sem]
return HttpResponse(json.dumps(data))
loginForm.html:
<form action="" method="post">
<table>
{{ form.as_table }}
</table>
{% csrf_token%}
<input type="submit" value="Submit">
</form>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$('#id_course_name').change(function() {
request_url = 'login/get_batch/' + c_id + '/';
$.ajax({
url: request_url,
success: function(data){
data = $.parseJSON(data);
$('#id_semester').html('<option selected="' + "selected" + '">' + '' +'</option>');
for(var i = 1; i<=data[1]; i++) //data[1] contains no of sem
$('#id_semester').append('<option value="' + i + '">' + i +'</option>');
},
errors: function(e) {
alert(e);
}
})
})
请帮帮我。
问题是 ChoiceField
要求所选选项在其选择集中。
在上面的代码中,semester
的选择是通过 jquery 动态更新的。但是,这些选择不是 semester
的选择集的一部分,即 sem_choices
。因此问题。
要解决此问题,请使用 request.POST
方法将所选值包含在 sem_choices
中。
在views.py中:
form = loginForm(request.POST)
sem = request.POST.get('semester')
form.fields['semester'].choices = [(sem, sem)]
另一个解决方案是覆盖 ChoiceField 的 valid_value() 方法。如果您不担心表单可能 return 的可能值,那么它就这么简单:
class AjaxChoiceField(forms.ChoiceField):
def valid_value(self, value):
return True
或者您可以根据需要添加更多验证。