一、批量插入数据 models.py: from django.db import models class Book(models.Model): title = models.CharField(max_length=32) test.py