2

我正在使用 python django 我在运行 tests.py 时出错这是什么意思:

Traceback (most recent call last):
  File "/home/hala/Desktop/lasting/sharesoft-13/project/tager/tager_www/tests.py", line 82, in test_saving_comments
    response=c.get(reverse('adingcomment', kwargs={'post_id' : 1, 'content':'hjhgh'}))
  File "/usr/local/lib/python2.7/dist-packages/django/core/urlresolvers.py", line 496, in reverse
    return iri_to_uri(resolver._reverse_with_prefix(view, prefix, *args, **kwargs))
  File "/usr/local/lib/python2.7/dist-packages/django/core/urlresolvers.py", line 416, in _reverse_with_prefix
    "arguments '%s' not found." % (lookup_view_s, args, kwargs))
NoReverseMatch: Reverse for 'adingcomment' with arguments '()' and keyword arguments '{'content': 'hjhgh', 'post_id': 1}' not found.
4

2 回答 2

1

这意味着 Django 无法找到与该特定路径名和参数匹配的路由,因此无法通过反转路由来生成 URL。

也许adingcomment是一个错字,应该是addingcomment吗?

于 2013-04-11T15:52:08.090 回答
0

reverse('adingcomment', kwargs={'post_id' : 1, 'content':'hjhgh'})未能找到 URL 路由。

也许您注册了addingcomment一条路线?您需要检查路线的名称和提供的参数以匹配您注册的现有路线。有关更多详细信息,请参阅URL文档的反向解析。

于 2013-04-11T15:52:42.740 回答