gpt4 book ai didi

python - Django 类型错误 : 'unicode' object is not callable

转载 作者:行者123 更新时间:2023-12-01 05:27:42 24 4
gpt4 key购买 nike

我正在尝试构建消息标记应用程序,但遇到了此错误消息。

Internal Server Error: /
Traceback (most recent call last):
File "/Library/Python/2.7/site-packages/django/core/handlers/base.py", line 115, in get_response
response = callback(request, *callback_args, **callback_kwargs)
TypeError: 'unicode' object is not callable

无论我尝试什么,包括删除整个 models.py 文件,我都不断收到此错误。

下面是一些文件片段。

模型.py

class Tag(models.Model):
tag_name = models.CharField(max_length=100)
date_created = models.DateTimeField(auto_now_add=True)

def __unicode__(self):
return self.tag_name

View .py

def multiple(request):
qs = Tag.objects.all()

template = loader.get_template('multiple.html')
context = RequestContext(request, {
'qs': qs,
})

我不确定如何解决这个问题,特别是因为它实际上没有引用我创建的任何文件。

最佳答案

我认为这是你的问题:

urlpatterns = patterns('app.views', url(r'^$', 'multiple.'), )
^

看到那个点了吗?这会破坏查找 View 函数。

关于python - Django 类型错误 : 'unicode' object is not callable,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21033237/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com