Django数据库创建与查询及ORM的概念

ORM:是封装在pymysql上层的文件。他的作用是把python语句转换成sql语句,从而去数据库里操作数据。
从数据库里获得的数据,经过orm转换为对象,对象可以直接调用属性获得值。orm本质是个中转站。 上节课查漏及本节课内容

python3解释器需要在app下面的__init__导入pymysql pymysql....
python2不需要 python3不支持 数据库存入数据的时候要注意重启和不重启的区别 dbsqlite 小型数据库 测试用 不用链接 中途不能切数据库,比如sqlite和mysql 对待数据库需慎重 用orm对数据进行操作 不要在navicate数据库里直接改 return的是对象 wsgiref被封装到源码里了 细看:
render模板文件open 接受参数:request,模板文件,传一个字典(去模板里替换),拿到模板的字符串,HttpResponse传给浏览器
redirect 返回一个url地址给浏览器 template下面建文件夹 static 如果用元组一定要加逗号,不然会直接报错 static前面加/原因是前面有http//:127.0.0.1:8000 app下面可以建文件写方法,在views里面调用 request里面请求体,请求头都在里面,被django封装 作业需要注意的地方:如果模板里有重复的name值,会把两个name值放到列表里,取值的时候默认取后面的值。
还有一个就是urls里面 今日内容:
orm能干的事:
1 创建表,修改表,删除表
2 插入数据
3 修改数据
4 删除数据
不能干:不能创建数据库 类名-----》表 对象实例------》一条数据 属性-----》字段 使用mysql步骤:
0 创建数据库(orm不能创建数据库)
1 在settings里配置
2 在app的init.py文件里写上:import pymysql
pymysql.install_as_MySQLdb()
3 在models里定义类,类必须继承 models.Model
4 写属性,对应着数据库的字段
5 执行 python manage.py makemigrations(相当于做一个记录)
6 执行 pyhton manage.py migrate (会把记录执行到数据库) 创建出来的表名是app的名字_类名 下面是在课件上进行了详细的注释内容,重要的我基本都标注了 这里连接的是mysql数据库,sqlite用起来不习惯
 """
Django settings for day03 project. Generated by 'django-admin startproject' using Django 1.11. For more information on this file, see
https://docs.djangoproject.com/en/1.11/topics/settings/ For the full list of settings and their values, see
https://docs.djangoproject.com/en/1.11/ref/settings/
""" import os # Build paths inside the project like this: os.path.join(BASE_DIR, ...)
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) # Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/1.11/howto/deployment/checklist/ # SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = '8a7#ap_9gk93+=kup84ig@6std%hgmhj*kruml5*78kkkw=ar3' # SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True ALLOWED_HOSTS = [] # Application definition INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'app01.apps.App01Config', # 每创建一个app都要放到里面
] MIDDLEWARE = [
'django.middleware.security.SecurityMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
# 'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
] ROOT_URLCONF = 'day03.urls' TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [os.path.join(BASE_DIR, 'templates')] # 没有需要自己手动添加
,
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.template.context_processors.debug',
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
],
},
},
] WSGI_APPLICATION = 'day03.wsgi.application' # Database
# https://docs.djangoproject.com/en/1.11/ref/settings/#databases # 数据库之间怎么切换?(正式项目中是不允许中间切换数据库的)
DATABASES = {
# 'default': {
# 'ENGINE': 'django.db.backends.sqlite3',
# 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
# }
# 连接mysql需要加入用户名 密码 数据库名字 IP+PORT 五个重要对象
# 下面是连接mysql需要填写的
'default': {
'ENGINE': 'django.db.backends.mysql',
'HOST':'127.0.0.1',
'PORT':3306,
'USER':'root',
"PASSWORD":'',
'NAME': 'test',
# 'ATOMIC_REQUEST': True,
# 设置为True统一http请求对应的所有sql都放在一个事务中执行(要么所有都成功,要么所有都失败,失败了执行回滚操作)。
# 是全局性的配置, 如果要对某个http请求放水(然后自定义事务),可以用non_atomic_requests修饰器
}
} # Password validation
# https://docs.djangoproject.com/en/1.11/ref/settings/#auth-password-validators # 验证密码???
AUTH_PASSWORD_VALIDATORS = [
{
'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
},
] # Internationalization
# https://docs.djangoproject.com/en/1.11/topics/i18n/ LANGUAGE_CODE = 'en-us' TIME_ZONE = 'UTC' USE_I18N = True USE_L10N = True USE_TZ = True # Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/1.11/howto/static-files/ STATIC_URL = '/static/'
STATICFILES_DIRS = [
os.path.join(BASE_DIR,'static')
]

settings

app下面的__init__文件

 import pymysql
pymysql.install_as_MySQLdb() # 这是因为django默认你导入的驱动是MySQLdb,可是MySQLdb 对于py3有很大问题,所以我们需要的驱动是PyMySQL
# 所以,我们只需要找到项目名文件下的__init__,在里面写入上面的

__init__

视图层函数

 from django.shortcuts import render, HttpResponse
from app01.models import * # orm不能指定字符编码 如遇到字符编码问题去终端或者navicate改
# 创建数据库记得要先设定字符编码
# Create your views here.
def register(request):
if request.method == 'POST':
# request.POST请求体的内容都在里面,并且是一个字典的形式
name = request.POST.get('name')
password = request.POST.get('password')
gender = request.POST.get('gender')
birthday = request.POST.get('birthday')
# 第一种方式
# user=UserInfo(birthday=birthday,name=name,password=password,gender=gender)
# user.save()
# 第二种方式(推荐这种)创建成功,会返回一个对象
# 里面的参数是关键字参数,必须要关键字传参
user = UserInfo.objects.create(birthday=birthday, name=name, password=password, gender=gender)
print(user)
return HttpResponse('注册成功') return render(request, 'register.html') def user_list(request):
# 把数据表里用户全拿回来
user_list = UserInfo.objects.all()
# print(type(user_list))
# # print(user_list[0].name)
# # print(user_list[0].password)
# user_list是orm自定义的一个类型 queryset 形似列表,里面是一个个对象(表里的一行数据组成一个对象,可以通过对象.字段进行取值)
return render(request, 'user_list.html', {'user_list': user_list})

views

models

 from django.db import models
# models里面存放类 类继承models模块中的Model类 # Create your models here. # models是模块名 Model是模块里的类方法
class UserInfo(models.Model): # 类名即数据库的表名
# 注意:models后面跟着的都是作者自定义的类名
# 等号前面的是数据库中的字段,也是一个python中的实例对象。
nid = models.AutoField(primary_key=True) # 自增长并且设置为键唯一 primary_key = True 设置id为主键
name = models.CharField(max_length=32) # max_length = 32 设置name最大长度为32
password=models.CharField(max_length=32,null=True) # 设置密码最大长度为32 且允许为空(设置的默认为空,新加的字段)
# 删除一个字段就是直接注释掉models的类中代码,再刷进去
# 添加一个字段就是直接用migrations刷进去,然后选择2退出在models类中设置默认值,有下面两种,注意区分
# default='' 默认值
# null=True 字段可以为空
gender = models.IntegerField() # int类型 用0或1代表男还是女
birthday = models.DateField() # 日期类型的对象
# user_datil=models.OneToOneField(to='User_datil',to_field='nid')
# dd=models.ForeignKey(to='dd',to_field='nid')
#
# sss=models.ManyToManyField(to='author') def __str__(self):
return self.name

models

user_list模板

 <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>用户信息</title>
</head>
<body> <table border="1">
<thead>
<tr>
<th>id</th>
<th>用户名</th>
<th>密码</th>
<th>性别</th>
<th>生日</th>
</tr>
</thead>
<tbody>
{% for user in user_list %}
<tr>
{# 对象直接调用字段名称可获得对应的值#}
<td>{{ user.nid }}</td>
<td>{{ user.name }}</td>
<td>{{ user.password }}</td>
<td>{{ user.gender }}</td>
<td>{{ user.birthday }}</td>
</tr> {% endfor %} </tbody>
</table> </body>
</html>

user_list

上一篇:使用Java代码自定义Ribbon配置


下一篇:程序员必备!Sonar代码质量管理工具