在模板渲染过程中解压缩的值太多 [英] Too many values to unpack during template rendering

查看:134
本文介绍了在模板渲染过程中解压缩的值太多的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在学习Django,我遇到这个错误,我有点困惑。我试图把我的表格放在我的主页上

I am learning Django right now and I came across this error which I am a bit stumped on. I am trying to get my form onto the my homepage

我收到这个错误:

代码:

home / views.py:

home/views.py:

from django.shortcuts import render
from forms import TestForm
from django.http import HttpResponseRedirect

def home(request):
    if request == 'POST':
        # create a form instane and populate it with data from the request
        form = TestForm(request.POST)
        if form.is_valid():
            # process the data in form.cleaned_data as required
            form.cleaned_data()
            # redirect to a new URL:
            return HttpResponseRedirect('/test/')
    # if a GET (or any other method) we'll create a blank form
    else:
        form = TestForm()
    return render(request, 'home/home_page.html', {'form': form})


def scan_events(request):
    if request == "POST":
        # json = request.POST['testData']
        # condition statement for file upload ot c/p events

        return render(request, 'home/test.html', {'data': request.POST})


def test(request):
    request(request, 'home/test.html')

home / forms.py

home/forms.py

from django import forms

TEST_TYPE_CHOICES = ('HDFS', 'HIVE', 'BOTH')

class TestForm(forms.Form):
    # hdfs_test = forms.MultipleChoiceField()
    # hive_test = forms.MultipleChoiceField()
    # hdfs_hive_test = forms.MultipleChoiceField()
    test_type = forms.MultipleChoiceField(required=True, widget=forms.RadioSelect(), choices=TEST_TYPE_CHOICES)
    event_textarea = forms.Textarea(attrs={'rows': '8', 'class': 'form-control', 'placeholder': 'Events...', 'id': 'event_textarea'})
    # file_upload = forms.FileInput()

urls .py:

urlpatterns = patterns('',
    url(r'^admin/', include(admin.site.urls)),
    url(r'^$', 'home.views.home', name='home'),
    url(r'test/$', 'home.views.test'),

)

home / templates / home / home_page.html

home/templates/home/home_page.html

{% extends 'index/index.html' %}

{% load staticfiles %}
{% block head %}
  <script type="text/javascript" src="{{ STATIC_URL }}home/js/home.js" async></script>
  <link href="{{ STATIC_URL }}home/css/home.css" rel="stylesheet">
{% endblock head %}

{% block content %}

  <div>Welcome to Trinity E2E testing</div>

  <form id="test-form" action="/test/" method="post"> {# pass data to /test/ URL #}
    {% csrf_token %}

    {{ form }}

    <input id="submit-test" type="submit" class="btn btn-default btn-lg" value="Submit">
  </form>

{% endblock content %}


推荐答案

选项 应该是关键描述对的序列(可以准确地说)。

choices should be a sequence (iterable to be exact) of key-description pairs.

TEST_TYPE_CHOICES = [
    ('HDFS', 'HDFS'),
    ('HIVE', 'HIVE'),
    ('BOTH', 'Both of HDFS and HIVE'),
]



错误消息说明:



字符串也是序列。因此,使用选项的代码将字符串看作4个字符的序列(字符串确切,因为Python中没有字符类型)。这就是为什么你得到错误:太多的值解压缩

Explanation of the error message:

Strings are also sequences. So the code that use choices see the string as a sequence of 4 character (string to be exact, because there's no character type in Python). That's why you get the error: too many values to unpack

>>> a, b = ('HDFS', 'HDFS')
>>> a, b = 'HDFS'
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ValueError: too many values to unpack

如果字符串都是2个字符的字符串,它会隐藏(不解决)问题。

If the strings were all 2-character strings, it would hide (not solve) the problem.

>>> a, b = 'HD'
>>> a
'H'
>>> b
'D'

这篇关于在模板渲染过程中解压缩的值太多的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆