刚刚收到我的一个表单上的哨兵错误TypeError context must be a dict rather than Context.
。我知道这与Django 1.11有关,但我不知道该修改什么来修复它。
违规行
message = get_template('email_forms/direct_donation_form_email.html').render(Context(ctx))
个
整体视图
def donation_application(request):
if request.method == 'POST':
form = DirectDonationForm(data=request.POST)
if form.is_valid():
stripe.api_key = settings.STRIPE_SECRET_KEY
name = request.POST.get('name', '')
address = request.POST.get('address', '')
city = request.POST.get('city', '')
state = request.POST.get('state', '')
zip = request.POST.get('zip', '')
phone_number = request.POST.get('phone_number', '')
support = request.POST.get('support', '')
agree = request.POST.get('agree', '')
email_address = request.POST.get('email_address', '')
number = request.POST.get('number', '')
cvc = request.POST.get('cvc', '')
exp = request.POST.get('exp', '')
# token = form.cleaned_data['stripe_token'],
# exp_m = int(request.POST.get('exp_month', ''))
# exp_y = int(request.POST.get('exp_year', ''))
exp_month = exp[0:2]
exp_year = exp[5:9]
subject = 'New Donation'
from_email = settings.DEFAULT_FROM_EMAIL
recipient_list = ['deniselarkins@/////\\\\\.com',
'charles@/////\\\\\.net',
'marcmunic@/////\\\\\.com',
]
token = stripe.Token.create(
card={
'number': number,
'exp_month': exp_month,
'exp_year': exp_year,
'cvc': cvc
},
)
customer = stripe.Customer.create(
email=email_address,
source=token,
)
total_support = decimal.Decimal(support) / 100
total_charge = decimal.Decimal(int(support)) / 100
# Charge the user's card:
charge = stripe.Charge.create(
amount=total_charge,
currency='usd',
description='Donation',
customer=customer.id
)
ctx = {
'name': name,
'address': address,
'city': city,
'state': state,
'zip': zip,
'phone_number': phone_number,
'email_address': email_address,
'agree': agree,
'charge': charge,
'customer': customer,
'total_support': total_support,
'total_charge': total_charge
}
message = get_template('email_forms/direct_donation_form_email.html').render(Context(ctx))
msg = EmailMessage(subject, message, from_email=from_email, to=recipient_list)
msg.content_subtype = 'html'
msg.send(fail_silently=True)
return redirect(
'/contribute/donation-support-thank-you/?name=' + name +
'&address=' + address +
'&state=' + state +
'&city=' + city +
'&zip=' + zip +
'&phone_number=' + phone_number +
'&email_address=' + email_address +
'&total_support=' + str(total_support) +
'&total_charge=' + str(total_charge)
)
context = {
'title': 'Donation Pledge',
}
return render(request, 'contribute/_donation-application.html', context)
字符串
4条答案
按热度按时间k0pti3hp1#
在Django 1.8+中,模板的
render
方法接受context
参数的字典。支持传递Context
示例已被弃用,并在Django 1.10+中给出错误。在您的示例中,只需使用常规的
dict
而不是Context
示例:字符串
您可能更喜欢使用
render_to_string
快捷方式:型
如果您使用的是
RequestContext
而不是Context
,那么您还需要将request
传递给这些方法,以便上下文处理器运行。型
4dc9hkyq2#
从Django 1.8迁移到Django 1.11.6
只要我有RequestContext类,就会有一个flaten()方法,它将结果作为一个命令返回。
如果类是RequestContext...
字符串
成为
型
如果上下文是被Context() Package 的话,只需删除它。因为Context()已被弃用。
型
成为
型
2wnc66cl3#
对于django 1.11及之后的版本,上下文必须是指定的。
您可以用途:
字符串
或者是
型
rqenqsqc4#
我来这里是因为我有同样的问题。我正在用Andrew Pinkham的Django Unleashed学习Django。这是2015年的一本书。
我在官方文档中发现,必须将字典传递给context参数,而不是Context示例(来自django.template.Context)。
@Alasdair建议使用render_to_string,但是,至少在Django 3.2中,render方法本质上使用render_to_string方法。
字符串
因此,只使用render方法可能会更好。我提供这个答案是因为这是我一直在寻找的一个,它可能有助于一些人达到这个堆栈溢出问题。