1

当我转到“标签”对象没有属性“计数”的开发服务器时,我不断收到此错误。我不明白为什么在前几行代码中使用 tag.count 时没有产生任何错误时,第 117 行会出现错误?谢谢!

这是错误消息:

AttributeError at /tag/
'Tag' object has no attribute 'count'
Request Method: GET
Request URL:    
http://127.0.0.1:8000/tag/

Django Version: 1.4
Exception Type: AttributeError
Exception Value:    
'Tag' object has no attribute 'count'
Exception Location: /Users/jonathanschen/Python/projects/skeleton/django_bookmarks/django_bookmarks/bookmarks/views.py in tag_cloud_page, line 117
Python Executable:  /usr/bin/python
Python Version: 2.7.1
Python Path:    
['/Users/jonathanschen/Python/projects/skeleton/django_bookmarks',
 '/Library/Python/2.7/site-packages/pip-1.1-py2.7.egg',
 '/Library/Python/2.7/site-packages/distribute-0.6.27-py2.7.egg',
 '/Library/Python/2.7/site-packages/nose-1.1.2-py2.7.egg',
 '/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python27.zip',
 '/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7',
 '/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/plat-darwin',
 '/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/plat-mac',
 '/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/plat-mac/lib-scriptpackages',
 '/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python',
 '/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-tk',
 '/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-old',
 '/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload',
 '/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/PyObjC',
 '/Library/Python/2.7/site-packages',
 '/Library/Python/2.7/site-packages/setuptools-0.6c11-py2.7.egg-info']
Server time:    Mon, 9 Jul 2012 11:35:33 -0500

它引用的代码是这样的:

def tag_cloud_page(request):
    MAX_WEIGHT = 5
    tags = Tag.objects.order_by('name')
    # Calculate tag min and max counts
    min_count = max_count = tags[0].bookmarks.count()
    for tag in tags:
        tag.count = tag.bookmarks.count()
        if tag.count < min_count:
            min_count = tag.count
        if max_count < tag.count:
            max_count = tag.count
        #calculate count range. Avoid dividing by zero.
        range = float(max_count - min_count)
        if range == 0.0:
            range = 1.0
        # Calculate tag weights.
        for tag in tags:
            tag.weight = int(
                MAX_WEIGHT * (tag.count - min_count) / range #line 117
            )
        variables = RequestContext(request, {
            'tags': tags
        })
        return render_to_response('tag_cloud_page.html', variables)
4

2 回答 2

2

您使用相同的关键字迭代tags两次tag。把你的第二个 for 循环变成这样:

for related_tag in tags:

此外,您需要tag.weight = ...在第二个循环中进行更改,以便它引用正确的tagrelated_tag实例。

于 2012-07-09T16:52:26.463 回答
1

你没有说哪一行是第 117 行。我假设它是行:

MAX_WEIGHT * (tag.count - min_count) / range

您在 for 循环中使用具有相同名称“标记”的相同迭代器,该循环也使用标记进行迭代。这是行不通的。

于 2012-07-09T16:53:52.107 回答