rest_framework django 简单使用(数据库创建数据, 覆盖数据, 其他的大同小异)

事先说几个坑:数据库定义字段时候,不要定义name 要定义 username

首先, 定义model(简单定义)

from django.db import models from django.contrib.auth.models import AbstractUser # Create your models here. # 可以不要定义ID ,id字段数据库会自动创建 class User(models.Model, models.Manager): class Meta: db_table = 'user' username = models.CharField(db_column='username', max_length=128, null=True) text = models.CharField(db_column='text', max_length=128, null=True)

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wpdfgy.html