django 'str' 对象不可调用

Posted

技术标签:

【中文标题】django \'str\' 对象不可调用【英文标题】:django 'str' object is not callabledjango 'str' 对象不可调用 【发布时间】:2011-06-07 18:30:12 【问题描述】:

我在 django 中创建 URL 视图时遇到问题。它给了我这个错误(ferrol 是一个空间对象):

TypeError at /spaces/ferrol/
'str' object is not callable
Request Method: GET
Request URL:    http://localhost:8000/spaces/ferrol/
Django Version: 1.2.3
Exception Type: TypeError
Exception Value:    
'str' object is not callable
Exception Location: /usr/local/lib/python2.6/dist-packages/Django-1.2.3-py2.6.egg/django/core/handlers/base.py in get_response, line 100

代码如下:

空间/模型.py

class Space(models.Model):

"""
Basic spaces model.
"""
name = models.CharField(_('Name'), max_length=100, unique=True)
description = models.TextField(_('Description'))
date = models.DateTimeField(auto_now_add=True)

logo = models.ImageField(upload_to='spaces/logos',
                         verbose_name=_('Logotype'))
banner = models.ImageField(upload_to='spaces/banners',
                           verbose_name=_('Banner'))

主 urls.py

urlpatterns = patterns('',

# Django administration
(r'^admin/', include(admin.site.urls)),

(r'^spaces/', include('apps.spaces.urls')),

(r'^static/(?P<path>.*)$', 'django.views.static.serve',
    'document_root': 'static'),

)

if 'e_cidadania.apps.rosetta' in settings.INSTALLED_APPS:
urlpatterns += patterns('',
    url(r'^rosetta/', include('apps.rosetta.urls')),
)

空格/urls.py

urlpatterns = patterns('',
    # Spaces
    (r'^(?P<space_name>[-\w\./\s]+)/', 'view_space_index'),
)

spaces/views.py

def view_space_index(request, space_name):

"""
Show the index page for the requested space.
"""
place = get_object_or_404(Space, name=space_name)

return object_detail(request,
                     queryset = Space.objects.all(),
                     object_id = place.id,
                     template_name = 'spaces/index.html',
                     template_object_name = 'get_place')

【问题讨论】:

你的主要 urls.py 是什么样的?问题可能就在那里。 【参考方案1】:

在您的空间/urls.py 文件中,您必须提供查看方法的完整路径:

urlpatterns = patterns('',
    # Spaces
    (r'^(?P<space_name>[-\w\./\s]+)/', 'spaces.views.view_space_index'),
)

或者像这样:

urlpatterns = patterns('spaces.views',
    # Spaces
    (r'^(?P<space_name>[-\w\./\s]+)/', 'view_space_index'),
)

【讨论】:

现在可以使用了。我忘了在调用函数之前放置模式(apps.spaces.views),真丢脸!

以上是关于django 'str' 对象不可调用的主要内容,如果未能解决你的问题,请参考以下文章

删除外键对象时,Django'str'对象不可调用

Django 注册“str”对象不可调用

Django ElasticSearch Celery 任务模型调用返回“str”对象不可调用

TypeError:'str' 对象在 main.py 的第 200 行不可调用

django:TypeError:'tuple'对象不可调用

Django:'TypeError:'HttpResponseForbidden'对象不可调用