1、下载mysql5.7
MySQL :: Download MySQL Installer 这个是32位的安装版
MySQL :: Download MySQL Community Server (Archived Versions) 这个是zip版
这里我下载的是zip版本。 下载完成后,解压缩,然后新建文件my.ini进行配制。
my.ini
[mysqld]…
Django的DetailView是一个用于显示单个对象详情的视图。下面是一个使用DetailView来显示单个书籍详情的例子。 1,添加视图
Test/app3/views.py
from django.shortcuts import render# Create your views here.
from django.views.generic import ListView
from .m…