You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
590 B
22 lines
590 B
# Create your views here.
|
|
from django.db import connection
|
|
from rest_framework.decorators import api_view
|
|
|
|
from myapp.handler import APIResponse
|
|
from myapp.models import Classification
|
|
from myapp.serializers import ClassificationSerializer
|
|
from myapp.utils import dict_fetchall
|
|
|
|
|
|
@api_view(['GET'])
|
|
def list_api(request):
|
|
if request.method == 'GET':
|
|
classifications = Classification.objects.all().order_by('-create_time')
|
|
serializer = ClassificationSerializer(classifications, many=True)
|
|
return APIResponse(code=0, msg='查询成功', data=serializer.data)
|
|
|
|
|
|
|
|
|
|
|