摘要: 当页面需要 是用 ajax想后端提交数据时,需要将 csrfmiddlewaretoken 的值传过去 function up_ajax(){ data = { "name": 'xxxx', "phone": 'xxxxxxxxx', "csrfmiddlewaretoken":'{{csrf_t 阅读全文
posted @ 2022-07-09 15:59 JiZhaoG 阅读(299) 评论(0) 推荐(0)
摘要: 1、 可能是 settings文件中的DEBUG改成了 False, 并且 ALLOWED_HOSTS = ["*"] 解决方法: 将 ALLOWED_HOSTS = ["*"] 改为 ALLOWED_HOSTS = ["localhost", "127.0.0.1"] 阅读全文
posted @ 2022-07-08 10:04 JiZhaoG 阅读(432) 评论(0) 推荐(0)
摘要: 主键约束和外键约束 主键约束 (primary key): 约束在当前表中,指定列的值非空且唯一 外键约束(foreign key): A 表中的外键列,。 A表中的外键列的值必须参照BIAO中的某一列(B表主键) 外键必须是另一张表的主键的值(外键要引用主键!) 外键可以重复 外键可以为空 一张表 阅读全文
posted @ 2022-06-25 17:04 JiZhaoG 阅读(19) 评论(0) 推荐(0)
摘要: 简介: 存储过程(Stored {recedure)是在大型数据库中,一组为了完成特定功能的SQL语句集合,一次编译后永久有效,用户通过指定存储过程的名字,并给出参数,来执行它。存储过程是数据库中的一个重要对象,在数据量特别庞大的情况下利用存储过程打到倍速小效率提升 创建一个存储过程: 优点: 存储 阅读全文
posted @ 2022-06-25 13:48 JiZhaoG 阅读(23) 评论(0) 推荐(0)
摘要: 一、Django入门 1、基本概念 2、创建环境与安装app项目 pip install django 进入“终端”CMD 命令,通过django-admin startproject xxxx 创建django项目 通过 django-admin startapp xxxx 命令创建app应用 在 阅读全文
posted @ 2022-06-24 17:24 JiZhaoG 阅读(31) 评论(0) 推荐(0)
摘要: 在线正则测试工具 . 匹配出换行意外的任意字符 \w 匹配字母或数字或下划线 \W 匹配非字母或数字或下划线 \s 匹配任意的空白符 \S 匹配非空白符 \d 匹配数字 \D 匹配任意数字 \n 匹配换行 \t 匹配一个制表符 ^ 匹配字符串的开始 $ 匹配字符串的结束 18211111111 ^1 阅读全文
posted @ 2022-06-08 20:05 JiZhaoG 阅读(8) 评论(0) 推荐(0)
摘要: 查看谁在登录状态 who who am i whoami w 退出登录 logout exit 查看最近谁登录的 last 查看日期 date cal 切换用户 su 创建用户/删除用户 adduser password / userdel 清屏 clear 查看历史命令 history / his 阅读全文
posted @ 2022-06-03 11:30 JiZhaoG 阅读(20) 评论(0) 推荐(0)
摘要: 进程 Process类 def task(a): for i in range(4): print(a) def task1(a): for i in range(4): print(a) if __name__ == '__main__': p = Process(target=task, arg 阅读全文
posted @ 2022-05-31 22:50 JiZhaoG 阅读(39) 评论(0) 推荐(0)
摘要: python的数据类型 不可变类型: number、string、tuple 可变类型: list、 set、 dict 获取数据类型: print(type(xxxxx)) 有序数据类型: list 无序数据类型: dict # number data_one = 1 # string data_ 阅读全文
posted @ 2022-05-14 19:56 JiZhaoG 阅读(126) 评论(0) 推荐(0)
摘要: 问: http 和 https的区别 答: https需要申请ssl证书, https是超文本传输协议,信息是明文传输,https则是具有安全性的ssl加密传输协议 http和https使用的是不同的链接方式,用的端口也不一样,前者是80后者是443 问: cookie 和session的区别 答: 阅读全文
posted @ 2022-05-07 13:17 JiZhaoG 阅读(1063) 评论(0) 推荐(0)