这是我第一个使用Django的应用程序。我一直收到错误"'tuple' object has no attribute 'get'"
以下是我的观点:
from django.shortcuts import render
from django.http import HttpResponse
def index(request):
return HttpResponse("<h1>Get most recent music for your listening pleasure</h1>"),
答案 0 :(得分:3)
最后的逗号是将返回的对象转换为元组。删除它,你应该没事。
比较
>>> def f():
... return 1,
...
>>> type(f())
<class 'tuple'>
和
>>> def g():
... return 1
...
>>> type(g())
<class 'int'>