【发布时间】:2020-02-21 20:50:45
【问题描述】:
我浏览了许多其他帖子 - 但我找不到任何适合我的场景的内容。我在 POST 中遇到了一些数据,但是当我保存表单时 - 数据没有出现在数据库中。
我有点困惑为什么会这样,我尝试了各种方法,但似乎没有一个真正适用于我的情况。大多数与未发布的数据有关,我的数据已发布,只是没有保存。
我有以下型号:
class Payment(models.Model):
METHODS = (
("Cash", "Cash"),
("Check", "Check"),
("Credit Card", "Credit Card")
)
amount = models.DecimalField(decimal_places=2, max_digits=6)
method = models.CharField(
max_length=15,
choices=METHODS,
default="Credit Card"
)
stripe_id = models.CharField(max_length=255, blank=True, null=True)
check_number = models.IntegerField(blank=True, null=True)
created_at = models.DateTimeField(auto_now_add=True)
这是我的付款表格:
class PaymentForm(forms.ModelForm):
method = forms.CharField(
max_length=25,
widget=forms.TextInput(attrs={
"class": "form-control",
"readonly": "True",
})
)
amount = forms.DecimalField(
decimal_places=2,
max_digits=6,
widget=forms.TextInput(attrs={
"class": "form-control",
"readonly": "True",
})
)
stripe_id = forms.CharField(
widget=forms.HiddenInput(),
required=False
)
check_number = forms.IntegerField(
widget=forms.TextInput(attrs={"class": "form-control"}),
required=False
)
class Meta:
model = Payment
fields = (
'amount',
'method',
'stripe_id',
'check_number',
)
def clean_check_number(self):
method = self.cleaned_data["method"]
check_number = self.cleaned_data["check_number"]
if method == "Check" and not check_number:
raise forms.ValidationError("Check number is required.")
这是我与 POST 相关的 view.py 函数:
if request.method == "POST":
# Create a copy of the POST data so we can input data for CC payments
post_data = request.POST.copy()
# Set the PaymentForm with the copied data (muteable)
# required for some of the stripe stuff we do
payment_form = PaymentForm(post_data)
if 'stripeToken' in request.POST:
# This is wrapped in extensive try/catch in reality but I left
# it out for brevity
charge = stripe.Charge.create(
amount=stripe_cost,
currency="usd",
description="Payment",
source=request.POST["stripeToken"],
receipt_email=request.POST["stripeEmail"],
)
# add things to the form that aren't there
# from the stripe reply
payment_form.data['method'] = "Credit Card"
payment_form.data['stripe_id'] = charge["id"]
# This part works fine
if payment_form.is_valid():
# either a non-stripe payment
# or the next step after the stripe stuff is don
payment_form.save(commit=False)
print(payment_form.data)
payment = payment_form.save()
# The data saves to the DB, but the check_number is empty!
messages.success(request, "Thank you for your payment!")
return redirect("my_app:index")
表单有效后的打印语句如下所示:
<QueryDict: {'csrfmiddlewaretoken': ['3blahblahblah'], 'amount': ['9.10'], 'method': ['Check'], 'check_number': ['123455'], 'stripe_id': ['']}>
我遇到的问题是:当用户选择 Check 作为付款并保存付款(带有支票号码)时,支票号码不会保存到数据库中。
正如我们所见,request.POST 数据显示了那里的所有数据(包括检查号) - 但在数据库中 check_number 并没有在 .save() 运行时被存储。
什么可能导致这种情况发生,我该如何修改?
【问题讨论】:
-
如果您从表单中删除
check_number = forms.IntegerField( .... )并且只使用该字段的默认模型表单实现会发生什么? -
check_number仍然在request.POST中出现 - 但不会保存到数据库中。 -
您已经运行了最新的迁移?
-
是的,所有迁移都是最新的。
-
嗯,如果你删除模型中的
blank=True, null=True然后创建一个运行新的迁移?除此之外我不知道...
标签: python django django-forms modelform