事先说几个坑:数据库定义字段时候,不要定义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)