218

我在 Django 1.4 上有一条错误消息:

dictionary update sequence element #0 has length 1; 2 is required

当我尝试使用模板标签时发生这种情况{% for v in values %}

dictionary update sequence element #0 has length 1; 2 is required

Request Method:     GET
Request URL:    ...
Django Version:     1.4.5
Exception Type:     ValueError
Exception Value:    

dictionary update sequence element #0 has length 1; 2 is required

Exception Location:     /usr/local/lib/python2.7/dist-packages/djorm_hstore/fields.py in __init__, line 21
Python Executable:  /usr/bin/uwsgi-core
Python Version:     2.7.3
Python Path:    

['/var/www/',
 '.',
 '',
 '/usr/lib/python2.7',
 '/usr/lib/python2.7/plat-linux2',
 '/usr/lib/python2.7/lib-tk',
 '/usr/lib/python2.7/lib-old',
 '/usr/lib/python2.7/lib-dynload',
 '/usr/local/lib/python2.7/dist-packages',
 '/usr/lib/python2.7/dist-packages',
 '/usr/lib/python2.7/dist-packages/PIL',
 '/usr/lib/pymodules/python2.7']

Server time:    sam, 13 Jul 2013 16:15:45 +0200
Error during template rendering

In template /var/www/templates/app/index.html, error at line 172
dictionary update sequence element #0 has length 1; 2 is required

172     {% for product in products %}

Traceback Switch to copy-and-paste view

/usr/lib/python2.7/dist-packages/django/core/handlers/base.py in get_response

                            response = callback(request, *callback_args, **callback_kwargs)

    ...
▶ Local vars
/usr/lib/python2.7/dist-packages/django/contrib/auth/decorators.py in _wrapped_view

                    return view_func(request, *args, **kwargs)

    ...
▶ Local vars
/usr/lib/python2.7/dist-packages/django/views/decorators/http.py in inner

                return func(request, *args, **kwargs)

    ...
▶ Local vars
./app/views.py in index

            context_instance=RequestContext(request))

    ...
▶ Local vars
/usr/lib/python2.7/dist-packages/django/shortcuts/__init__.py in render_to_response

        return HttpResponse(loader.render_to_string(*args, **kwargs), **httpresponse_kwargs)

    ...
▶ Local vars
/usr/lib/python2.7/dist-packages/django/template/loader.py in render_to_string

            return t.render(context_instance)

    ...
▶ Local vars
/usr/lib/python2.7/dist-packages/django/template/base.py in render

                return self._render(context)

    ...
▶ Local vars
/usr/lib/python2.7/dist-packages/django/template/base.py in _render

            return self.nodelist.render(context)

    ...
▶ Local vars
/usr/lib/python2.7/dist-packages/django/template/base.py in render

                    bit = self.render_node(node, context)

    ...
▶ Local vars
/usr/lib/python2.7/dist-packages/django/template/debug.py in render_node

                return node.render(context)

    ...
▶ Local vars
/usr/lib/python2.7/dist-packages/django/template/loader_tags.py in render

            return compiled_parent._render(context)

    ...
▶ Local vars
/usr/lib/python2.7/dist-packages/django/template/base.py in _render

            return self.nodelist.render(context)

    ...
▶ Local vars
/usr/lib/python2.7/dist-packages/django/template/base.py in render

                    bit = self.render_node(node, context)

    ...
▶ Local vars
/usr/lib/python2.7/dist-packages/django/template/debug.py in render_node

                return node.render(context)

    ...
▶ Local vars
/usr/lib/python2.7/dist-packages/django/template/loader_tags.py in render

                result = block.nodelist.render(context)

    ...
▶ Local vars
/usr/lib/python2.7/dist-packages/django/template/base.py in render

                    bit = self.render_node(node, context)

    ...
▶ Local vars
/usr/lib/python2.7/dist-packages/django/template/debug.py in render_node

                return node.render(context)

    ...
▶ Local vars
/usr/lib/python2.7/dist-packages/django/template/defaulttags.py in render

            len_values = len(values)

    ...
▶ Local vars
/usr/lib/python2.7/dist-packages/django/core/paginator.py in __len__

            return len(self.object_list)

    ...
▶ Local vars
/usr/lib/python2.7/dist-packages/django/db/models/query.py in __len__

                    self._result_cache = list(self.iterator())

    ...
▶ Local vars
/usr/lib/python2.7/dist-packages/django/db/models/query.py in iterator

                        obj = model(*row[index_start:aggregate_start])

    ...
▶ Local vars
/usr/lib/python2.7/dist-packages/django/db/models/base.py in __init__

                    setattr(self, field.attname, val)

    ...
▶ Local vars
/usr/local/lib/python2.7/dist-packages/djorm_hstore/fields.py in __set__

                value = self.field._attribute_class(value, self.field, obj)

    ...
▶ Local vars
/usr/local/lib/python2.7/dist-packages/djorm_hstore/fields.py in __init__

            super(HStoreDictionary, self).__init__(value, **params)

    ...
▶ Local vars

当我尝试访问 hstore 查询集时也会发生这种情况:

Traceback (most recent call last):
File "manage.py", line 14, in <module>
    execute_manager(settings)

File "/usr/local/lib/python2.7/dist-packages/django/core/management/__init__.py", line 459, in execute_manager
    utility.execute()

File "/usr/local/lib/python2.7/dist-packages/django/core/management/__init__.py", line 382, in execute
    self.fetch_command(subcommand).run_from_argv(self.argv)

File "/usr/local/lib/python2.7/dist-packages/django/core/management/base.py", line 196, in run_from_argv
    self.execute(*args, **options.__dict__)

File "/usr/local/lib/python2.7/dist-packages/django/core/management/base.py", line 232, in execute
    output = self.handle(*args, **options)

File "/home/name/workspace/project/app/data/commands/my_command.py", line 60, in handle
    item_id = tmp[0].id,

File "/usr/local/lib/python2.7/dist-packages/django/db/models/query.py", line 207, in __getitem__
    return list(qs)[0]

File "/usr/local/lib/python2.7/dist-packages/django/db/models/query.py", line 87, in __len__
    self._result_cache.extend(self._iter)

File "/usr/local/lib/python2.7/dist-packages/django/db/models/query.py", line 301, in iterator
    obj = model(*row[index_start:aggregate_start])

File "/usr/local/lib/python2.7/dist-packages/django/db/models/base.py", line 300, in __init__
    setattr(self, field.attname, val)

File "/usr/local/lib/python2.7/dist-packages/djorm_hstore/fields.py", line 38, in __set__
    value = self.field._attribute_class(value, self.field, obj)

File "/usr/local/lib/python2.7/dist-packages/djorm_hstore/fields.py", line 21, in __init__
    super(HStoreDictionary, self).__init__(value, **params)

ValueError: dictionary update sequence element #0 has length 1; 2 is required

代码是:

tmp = Item.objects.where(HE("kv").contains({'key':value}))

if tmp.count() > 0:
            
    item_id = tmp[0].id,

我只是想访问该值。我不明白“更新序列”消息。当我使用光标而不是 时hstore queryset,该功能起作用。该错误也出现在模板渲染上。我刚刚重新启动uwsgi,一切正常,但稍后又出现错误。

4

21 回答 21

494

刚遇到这个问题。我不知道它是否与您的代码相同,但对我来说,根本原因是因为我忘记放置(或在 Django 2.0+ 中)函数调用name=的最后一个参数。urlpath

例如,以下函数会从问题中引发错误:

url(r'^foo/(?P<bar>[A-Za-z]+)/$', views.FooBar.as_view(), 'foo')
path('foo/{slug:bar}/', views.FooBar, 'foo')

但这些实际上有效:

url(r'^foo/(?P<bar>[A-Za-z]+)/$', views.FooBar.as_view(), name='foo')
path('foo/{slug:bar}/', views.FooBar, name='foo')

回溯没有帮助的原因是因为在内部,Django 想要将给定的位置参数解析为关键字参数kwargs,并且由于字符串是可迭代的,因此开始展开非典型代码路径。始终name=在您的网址上使用!

于 2013-10-29T22:17:48.630 回答
80

当我在搞乱字符串和字典时,我得到了这个错误。

dict1 = {'taras': 'vaskiv', 'iruna': 'vaskiv'}
str1 = str(dict1)
dict(str1)
*** ValueError: dictionary update sequence element #0 has length 1; 2 is required

因此,从字符串中获取 dict 实际要做的是:

dic2 = eval(str1)
dic2
{'taras': 'vaskiv', 'iruna': 'vaskiv'}

或者出于安全考虑,我们可以使用 literal_eval

from ast import literal_eval
于 2018-01-10T10:26:59.597 回答
32

当您尝试以下操作时,您的问题会出现错误:

>>> a_dictionary = {}
>>> a_dictionary.update([[1]])
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ValueError: dictionary update sequence element #0 has length 1; 2 is required

除非您显示代码,完整的回溯,否则很难判断代码中的原因在哪里。

于 2013-07-12T08:37:25.457 回答
19

当我忘记将关键字参数名称传递给 url() 函数时,我遇到了上述问题。

有错误的代码

 url(r"^testing/$", views.testing, "testing")

没有错误的代码

url(r"^testing/$", views.testing, name="testing")

所以最后我以这种方式消除了上述错误。在你的情况下可能会有所不同。因此,请检查urls.py中的 url 模式。

于 2017-03-16T10:50:34.913 回答
16

这是我在 Django 中遇到此错误并修复它的方式:

有错误的代码

urlpatterns = [path('home/', views.home, 'home'),]

更正

urlpatterns = [path('home/', views.home, name='home'),]
于 2020-10-07T17:28:14.207 回答
10

解决方案”

传递带有值的关键字参数名称作为您的视图名称,例如homehome-view等以url()发挥作用。

引发错误»

url(r'^home$', 'common.views.view1', 'home'),

正确的”

url(r'^home$', 'common.views.view1', name='home'),

于 2017-03-28T20:27:20.223 回答
9

这是重现的错误。

>>> d = {}
>>> d.update([(1,)])
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ValueError: dictionary update sequence element #0 has length 1; 2 is required
>>> 
>>> d
{}
>>> 
>>> d.update([(1, 2)])
>>> d
{1: 2}
>>> 
>>> d.update('hello_some_string')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>  
ValueError: dictionary update sequence element #0 has length 1; 2 is required
>>> 

如果您给出序列并且任何元素长度为 1 并且需要两个,那么我们将得到这种错误。见上面的代码。第一次我用元组给出序列并且它的长度为1,然后我们得到错误并且字典没有更新。我第二次在包含两个元素的元组中给出,字典得到了更新。

于 2013-12-14T19:07:14.857 回答
4

我遇到了同样的问题,发现这是由于参数错误造成的。在views.py中,我使用了:

return render(request, 'demo.html',{'items', items})    

但我发现了问题:{'items', items}. 更改以{'items': items}解决问题。

于 2016-08-21T00:22:15.760 回答
2

错误应该与参数有关。请确认 params 是一个字典对象。如果它只是一个参数列表/元组,则只使用一个 * ( *params) 而不是两个 * ( **params)。这会将列表/元组分解为适当数量的参数。

或者,如果参数来自代码的其他部分作为 JSON 文件,请这样做json.loads(params),因为 JSON 对象有时表现为字符串,因此您需要使用从字符串加载(加载)将其作为 JSON。

super(HStoreDictionary, self).__init__(value, **params)

希望这可以帮助!

于 2017-07-15T18:34:44.493 回答
2
urlpatterns = [ 
    path('',HomePageView.as_view(),name='home'),
]
于 2022-01-28T20:07:47.220 回答
2

就我而言,我get_context_data的一个观点是return render(self.request, 'es_connection_error.html', {'error':error});在 try/catch 块中返回而不是返回context

于 2017-02-23T16:11:14.983 回答
1

检查您的字典是否在您的键或值中有单引号或双引号!

dict1 = {'hello': 'world', 'programmer's': 'have girlfriend'}

要解决它,您只需将字典转换为字符串,然后使用替换方法!

于 2021-06-16T14:53:21.760 回答
1

我在尝试使用错误类型的参数调用更新方法时遇到了这个问题。预期的字典是:

{'foo': True}

通过的一项是:

{'foo': "True"}

确保检查您传递的所有参数都是预期的类型。

于 2016-12-27T08:50:19.857 回答
1

导致此错误的另一种情况:

dict('{"a":1}')  # gives the error

实现您想要的一种方法是使用eval

eval('{"a":1}')  # gives {"a":1}
于 2021-04-14T03:39:33.153 回答
1

我也有类似的问题。解决方法很简单。只是不要尝试在值中输入 NULL 或 None 值,否则你可能不得不使用类似这样的东西
dic.update([(key,value)])

于 2018-11-10T06:51:27.027 回答
0

您错误地发送了一个参数;它应该是dictionary object

  • 错误的: func(a=r)

  • 正确的: func(a={'x':y})

于 2013-12-25T21:45:33.807 回答
0

我遇到了同样的问题,结果发现 urls.py 中缺少“名称”是问题的原因。

于 2022-02-04T23:07:44.673 回答
0

请检查您的 URL 路径 我通过更改 URL 解决了这个问题。

path('reset_password_email/', requestpasswordresetemail, "request-rest-email")

而不是使用

path('reset_password_email/', requestpasswordresetemail, name="request-rest-email")

于 2022-01-29T18:25:08.650 回答
0

get_or_create当使用以下示例中的方法时,也会发生此行为,显然会出现该错误:

state,_ = Status.objects.get_or_create('Pending')

要解决此问题,您将添加相应的键和值。

即像这样state,_ = Status.objects.get_or_create(name='Pending')

于 2021-04-02T14:28:35.930 回答
0

当我尝试将 json 字符串转换为 dict 时遇到了这个问题。

输入:'{\r\n "resource_id": "id",\r\n "resource_type": "resource"\r\n}'

使用dict()转换字符串给dict了我这个错误。正确的方法是使用json模块。

例子:json.loads(input_str)

于 2022-01-18T11:05:18.757 回答
0

我遇到了这个错误调用:

dict(my_data)

我用以下方法解决了这个问题:

import json

json.loads(my_data)
于 2020-11-18T00:44:56.277 回答