上一页 1 ··· 6 7 8 9 10 11 12 13 14 15 下一页
摘要: https://yashuning.github.io/categories/javaSE/page/2/ 阅读全文
posted @ 2023-09-13 16:09 清澈的澈 阅读(16) 评论(0) 推荐(0)
摘要: # 1.安装 到 [官网]: https://www.sqlite.org/download.html 去下载对应系统版本,这里以win为例 需要下载两个文件 ![image-20230812200629893](https://s2.loli.net/2023/08/12/pIl9mgJFWRKE 阅读全文
posted @ 2023-08-12 20:11 清澈的澈 阅读(91) 评论(0) 推荐(0)
摘要: ## students数据库 ```sql CREATE DATABASE school; USE `school`; CREATE TABLE `students`( `id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY, -- 设置为关键字 `name` VA 阅读全文
posted @ 2023-08-12 19:35 清澈的澈 阅读(23) 评论(0) 推荐(0)
摘要: # SQL > Structured Query Language 结构化查询语言 > > 定义了操作关系性数据库的规则 > > 存在一定的版本之间的差异 ## 1.1 SQL概述 - SQL 语句以单行,多行书写,以分号结尾 - 不区分大小写 关键字建议大写 - -- 单行注释 # 注释内容 - 阅读全文
posted @ 2023-08-12 19:34 清澈的澈 阅读(37) 评论(0) 推荐(0)
摘要: 在进行Django重定向时,报错 ``` Exception Type: OperationalError Exception Value: no such table: UserBaseInfo2 ``` 原因: * 可能是没有进行数据库迁移 ``` python manage.py makemi 阅读全文
posted @ 2023-08-03 00:28 清澈的澈 阅读(42) 评论(0) 推荐(0)
摘要: ![image-20230725211711687](https://s2.loli.net/2023/07/25/bGdc3OsonJ2gtVi.png) 有三种方法: 1. 在页面中设置编码即可解决 ``` ``` 2. 在视图函数中设置响应对象的字符编码 ``` from django.htt 阅读全文
posted @ 2023-07-25 21:54 清澈的澈 阅读(267) 评论(0) 推荐(0)
摘要: 下载地址:[Python Release Python 3.8.0 | Python.org](https://www.python.org/downloads/release/python-380/) 下拉,点击下载这个 ![image-20230725185200424](https://s2. 阅读全文
posted @ 2023-07-25 19:04 清澈的澈 阅读(781) 评论(0) 推荐(0)
摘要: ## 设置字体大小 ![image-20230725185654591](https://s2.loli.net/2023/07/25/m71t3KnNR8wDlod.png) ## 编辑器字体变大 ![image-20230725190016652](https://s2.loli.net/202 阅读全文
posted @ 2023-07-25 19:03 清澈的澈 阅读(65) 评论(0) 推荐(0)
摘要: 最近新加装了固态硬盘,过程比较曲折,甚至系统也被我重装了…… 记录一下常用的软件,以备不时之需。 - [ ] Typora - [ ] v2rayN-Core - [ ] VGN - [ ] VMware - [ ] Wechat - [ ] WPS - [ ] Xmind - [ ] Z-libr 阅读全文
posted @ 2023-07-24 17:07 清澈的澈 阅读(38) 评论(0) 推荐(0)
摘要: # 1. 视图函数 用于处理客户端的请求并生成响应数据。在views使用函数处理请求的方式,被称为视图函数,也叫作FBV(Function Base Views). 一个简单的视图函数:在views.py里面配置 ```python from django.http import HttpRespo 阅读全文
posted @ 2023-07-23 23:05 清澈的澈 阅读(90) 评论(0) 推荐(0)
上一页 1 ··· 6 7 8 9 10 11 12 13 14 15 下一页