Django 1.11 TypeError上下文必须是dict而不是Context

h6my8fg2  于 2023-08-08  发布在  Go
关注(0)|答案(4)|浏览(108)

刚刚收到我的一个表单上的哨兵错误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)

字符串

k0pti3hp

k0pti3hp1#

在Django 1.8+中,模板的render方法接受context参数的字典。支持传递Context示例已被弃用,并在Django 1.10+中给出错误。
在您的示例中,只需使用常规的dict而不是Context示例:

message = get_template('email_forms/direct_donation_form_email.html').render(ctx)

字符串
您可能更喜欢使用render_to_string快捷方式:

from django.template.loader import render_to_string

message = render_to_string('email_forms/direct_donation_form_email.html', ctx)


如果您使用的是RequestContext而不是Context,那么您还需要将request传递给这些方法,以便上下文处理器运行。

message = get_template('email_forms/direct_donation_form_email.html').render(ctx, request=request)
message = render_to_string('email_forms/direct_donation_form_email.html', ctx, request=request)

4dc9hkyq

4dc9hkyq2#

从Django 1.8迁移到Django 1.11.6
只要我有RequestContext类,就会有一个flaten()方法,它将结果作为一个命令返回。
如果类是RequestContext...

return t.render(context)

字符串
成为

return t.render(context.flatten())


如果上下文是被Context() Package 的话,只需删除它。因为Context()已被弃用。

return t.render(Context(ctx))


成为

return t.render(ctx)

2wnc66cl

2wnc66cl3#

对于django 1.11及之后的版本,上下文必须是指定的。
您可以用途:

context_dict = get_context_dict(context)
return t.render(context_dict)

字符串
或者是

context_dict = context.flatten()
return t.render(context_dict)

rqenqsqc

rqenqsqc4#

我来这里是因为我有同样的问题。我正在用Andrew Pinkham的Django Unleashed学习Django。这是2015年的一本书。
我在官方文档中发现,必须将字典传递给context参数,而不是Context示例(来自django.template.Context)。
@Alasdair建议使用render_to_string,但是,至少在Django 3.2中,render方法本质上使用render_to_string方法。

def render(request, template_name, context=None, content_type=None, status=None, using=None):
"""
Return a HttpResponse whose content is filled with the result of calling
django.template.loader.render_to_string() with the passed arguments.
"""
content = loader.render_to_string(template_name, context, request, using=using)
return HttpResponse(content, content_type, status)

字符串
因此,只使用render方法可能会更好。我提供这个答案是因为这是我一直在寻找的一个,它可能有助于一些人达到这个堆栈溢出问题。

相关问题