摘要:
自定义分页 准备知识点: Python内置的@property装饰器就是负责把一个方法变成属性调用的: 简单版分页 from django.shortcuts import render # Create your views here. # 去数据库数据 data = [] for i in ra 阅读全文
摘要:
mysql 建学生表及课程表 添加内容 view.py from django.shortcuts import render,HttpResponse,redirect from . import models # Create your views here. # 关于课程 # 查所有的课程 d 阅读全文