5
TemplateDoesNotExist-Djangoエラー
私はDjango Rest Frameworkを使用しています。エラーが発生し続ける Exception Type: TemplateDoesNotExist Exception Value: rest_framework/api.html 私はどうやって間違っているのか分かりません。RESTフレームワークを実際に試すのはこれが初めてです。これはコードです。 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 …