我正在使用Django Rest Framework。而且我一直收到错误
Exception Type: TemplateDoesNotExist
Exception Value: rest_framework/api.html
我不知道自己的错误。这是我第一次尝试使用REST Framework。 这是代码。
views.py
import socket, json
from modules.data.models import *
from modules.utils import *
from rest_framework import status
from rest_framework.decorators import api_view
from rest_framework.response import Response
from modules.actions.serializers import ActionSerializer
@api_view(['POST'])
@check_field_exists_wrapper("installation")
def api_actions(request, format = None):
action_type = request.POST['action_type']
if action_type == "Shutdown" :
send_message = '1'
print "Shutting Down the system..."
elif action_type == "Enable" :
send_message = '1'
print "Enabling the system..."
elif action_type == "Disable" :
send_message = '1'
print "Disabling the system..."
elif action_type == "Restart" :
send_message = '1'
print "Restarting the system..."
if action_type in ["Shutdown", "Enable", "Disable"] : PORT = 6000
else : PORT = 6100
controllers_list = Controller.objects.filter(installation_id = kwargs['installation_id'])
for controller_obj in controllers_list:
ip = controller_obj.ip
try:
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect((ip, PORT))
s.send(send_message)
s.close()
except Exception as e:
print("Exception when sending " + action_type +" command: "+str(e))
return Response(status = status.HTTP_200_OK)
models.py
class Controller(models.Model):
id = models.IntegerField(primary_key = True)
name = models.CharField(max_length = 255, unique = True)
ip = models.CharField(max_length = 255, unique = True)
installation_id = models.ForeignKey('Installation')
serializers.py
来自django.forms导入小部件 来自rest_framework导入序列化程序 来自modules.data.models import *
class ActionSerializer(serializers.ModelSerializer):
class Meta:
model = Controller
fields = ('id', 'name', 'ip', 'installation_id')
urls.py
from django.conf.urls import patterns, url
from rest_framework.urlpatterns import format_suffix_patterns
urlpatterns = patterns('modules.actions.views',
url(r'^$','api_actions',name='api_actions'),
)
答案 0 :(得分:263)
确保rest_framework
settings.py
中列出INSTALLED_APPS
。
答案 1 :(得分:5)
对我来说,由于安装损坏或其他一些未知原因,文件系统上实际上缺少rest_framework/api.html
。重新安装djangorestframework
解决了问题:
$ pip install --upgrade djangorestframework
答案 2 :(得分:4)
请注意,DRF会尝试以请求的格式返回数据。在您的浏览器中,这很可能是HTML。要指定备用响应,请使用?format=
参数。例如:?format=json
。
当您在浏览器中访问API端点时,最常出现TemplateDoesNotExist
错误,并且您不在已安装的应用列表中包含rest_framework
,如其他受访者描述。
如果您的应用列表中没有包含DRF,但又不想使用HTML Admin DRF页面,请尝试使用其他格式“侧面”显示此错误消息。
来自此处文档的更多信息:http://www.django-rest-framework.org/topics/browsable-api/#formats
答案 3 :(得分:3)
不是您的情况,但也可能为loaders
自定义Django
。例如,如果您有设置(从Django 1.8
开始):
TEMPLATES = [
{
...
'OPTIONS': {
'context_processors': [
'django.template.context_processors.debug',
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages'
],
'loaders': [
'django.template.loaders.filesystem.Loader',
],
...
}
}]
Django不会尝试使用模板查看应用程序文件夹,因为您应该将django.template.loaders.app_directories.Loader
明确添加到loaders
中。
请注意,默认情况下django.template.loaders.app_directories.Loader
包含在loaders
中。
答案 4 :(得分:0)
即使我们没有在已安装的应用程序中添加“rest_framework”,我们也会收到错误消息。 因此,如果您遇到错误,也请检查一下。