摘要:
model.py from django.db import models # Create your models here. class Book(models.Model): nid = models.AutoField(primary_key=True) title = models.Cha 阅读全文
摘要:
一次在使用orm进行联表查询的时候,出现 Python int too large to convert to C long 的问题: 在分析错误之后,在错误最后面提示中有: File "F:\python\python3.6\lib\sqlite3\dbapi2.py", line 64, in 阅读全文
摘要:
# 批量创建数据 # Create your views here. from django.db import models from django.shortcuts import HttpResponse from .models import Book import random def i 阅读全文