摘要:
models.py: from django.db import models class UserGroup(models.Model): title = models.CharField(max_length=32) class UserInfo(models.Model): user_type 阅读全文
摘要:
model.py: from django.db import models class Role(models.Model): title = models.CharField(max_length=32) 在 role 表中创建数据 方法一:平常的方法 views.py: from drf im 阅读全文
摘要:
https://www.cnblogs.com/sch01ar/p/11271914.html request.POST 的数据是从 request.body 中提取的,request.POST 有数据需要两个前提条件。 一,请求头中 Content-Type 的值为 application/x-w 阅读全文
摘要:
自定义类实现: views.py: from django.shortcuts import HttpResponse from rest_framework.views import APIView from rest_framework.versioning import BaseVersion 阅读全文