gpt4 book ai didi

python - 保存多对多字段 Django 表单

转载 作者:行者123 更新时间:2023-12-02 20:26:00 24 4
gpt4 key购买 nike

我的类(class)和导师模型之间存在多对多关系。我试图做到这一点,以便当您使用表单为新导师创建记录时,您可以选择他们可以教授的类(class)。我尝试使用和修改 this previous question 中的代码尽我所能,但我不完全理解,所以我确信我没有做对。提交表单后,不会保存类(class)和导师之间的链接。我需要对代码进行哪些更改才能保存?

models.py

class Tutor(models.Model):
FirstName = models.CharField(max_length=50)
LastName = models.CharField(max_length=50)
Email = models.EmailField(max_length=100)
PhoneNumber = models.CharField(max_length=10, )
RequestedHours = models.DecimalField(max_digits=3, decimal_places=1)

class Course(models.Model):
SubjectID = models.ForeignKey(Subject, related_name='subjectCourse')
Department = models.CharField(max_length=4)
Number = models.CharField(max_length=4)
Name = models.CharField(max_length=200)
TutorForCourse = models.ManyToManyField(Tutor)

forms.py

class TutorForm(forms.ModelForm):
class Meta:
model = Tutor
fields = ('FirstName', 'LastName', 'Email', 'PhoneNumber',
'RequestedHours',)
labels = {
'FirstName': 'First Name',
'LastName': 'Last Name',
'Email': 'Email',
'PhoneNumber': 'Phone Number',
'RequestedHours': 'Requested Hours',
}

courses = forms.ModelMultipleChoiceField(queryset=Course.objects.all())

def __init__(self, *args, **kwargs):
# Only in case we build the form from an instance
# (otherwise, 'toppings' list should be empty)
if kwargs.get('instance'):
# We get the 'initial' keyword argument or initialize it
# as a dict if it didn't exist.
initial = kwargs.setdefault('initial', {})
# The widget for a ModelMultipleChoiceField expects
# a list of primary key for the selected data.
initial['courses'] = [t.pk for t in
kwargs['instance'].course_set.all()]

forms.ModelForm.__init__(self, *args, **kwargs)

# Overriding save allows us to process the value of 'toppings' field
def save(self, commit=True):
# Get the unsaved Pizza instance
instance = forms.ModelForm.save(self, False)

# Prepare a 'save_m2m' method for the form,
old_save_m2m = self.save_m2m

def save_m2m():
old_save_m2m()
# This is where we actually link the pizza with toppings
instance.course_set.clear()
for course in self.cleaned_data['courses']:
instance.course_set.add(course)

self.save_m2m = save_m2m

# Do we need to save all changes now?
if commit:
instance.save()
self.save_m2m()

return instance

views.py

@login_required
def tutor_new(request):
if request.method == "POST":
form = TutorForm(request.POST)
if form.is_valid():
tutor = form.save(commit=False)
tutor.save()
tutors = Tutor.objects.filter()
return render(request, 'portfolio/tutor_list.html',
{'tutors': tutors})
else:
form = TutorForm()
# print("Else")
return render(request, 'portfolio/tutor_new.html', {'form': form})

最佳答案

更新答案

问题出在 save 方法中。您使用 commit=False 保存实例,但您的实例是在 if commit: 时保存的,因此现在不会保存。

只要注释掉if commit:就可以很好地保存了。

def save(self, commit=True):
# Get the unsaved Pizza instance
instance = forms.ModelForm.save(self, False)

# Prepare a 'save_m2m' method for the form,
old_save_m2m = self.save_m2m

def save_m2m():
old_save_m2m()
# This is where we actually link the pizza with toppings
instance.course_set.clear()
for course in self.cleaned_data['courses']:
instance.course_set.add(course)

self.save_m2m = save_m2m

# Do we need to save all changes now?
# Just like this
# if commit:
instance.save()
self.save_m2m()

return instance

关于python - 保存多对多字段 Django 表单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49932426/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com