111 1 分钟

日期:20019——09——27 IT 人:小海豚 学习内容: django 的设计模式 Models 作用 封装数据库, 对数据库进行访问, 对数据进行增删改查, Views 作用 进行业务逻辑的处理, teplates 作用 模板,主要进行展示,前端 document.querySelectorAll('.github-emoji') .forEach(el => { if (!el.dataset.src) { return; } const img = document.createElement('img'); img.style =...
237 1 分钟

日期:2019——09——27 IT 人:小海豚 学习内容: 导包的文件 ​ 一般都不用但不能够删除 ​ settings 配置文件 urls 统一资源编译器 wsgi 网管接口 app 中 News 大部分功能在 app news 中完成 Mingrations ​ 数据库映射时使用,一般不修改 ​ admin 管理文件 apps 定义 app 名字 models 模型写数据库 tests 测试文件 urls 配置 app 的 urls,和项目的 urls 进行交互 views 视图文件 Bd.sqlite3 默认使用的数据库 Manage.py...
139 1 分钟

日期:2019——09——27 IT 人:小海豚 学习内容: 启动服务器 在上一次创建的 app news 中创建一个 模板文件 叫 在创建一个 html 文件 叫 baidu 把百度拉入模板文件中,生成目录 打开浏览器搜索百度 复制全部源代码 在 html 中使用 baidu 修改视图 app news 中的 views 效果生成 document.querySelectorAll('.github-emoji') .forEach(el => { if (!el.dataset.src) { return; } const img =...
440 1 分钟

# 项目场景: Springboot 在启动时出现端口 8888 被占用 # 问题描述: Springboot 在启动时出现端口被占用 错误提示:Description:Web server failed to start. Port 8888 was already in use.Action:Identify and stop the process that's listening on port 8888 or configure this application to listen on another port.Disconnected from the target...
732 1 分钟

<hr style=" border:solid; width:100px; height:1px;" color=#000000 size=1"> # 前言 初学 Springboot 的小白刚安装了 IDEA 分享一下安装教程吧 <hr style="border:solid; width:100px; height:1px;" color=#000000 size=1"> # 一、IDEA 是什么? IDEA 全称 IntelliJ IDEA,是 java...
0 1 分钟

document.querySelectorAll('.github-emoji') .forEach(el => { if (!el.dataset.src) { return; } const img = document.createElement('img'); img.style = 'display:none !important;'; img.src = el.dataset.src; img.addEventListener('error', () =>...
828 1 分钟

# 项目场景: Django 中连接数据库时出现错误,采用了一个大牛的博客解决的,这里附上链接 https://blog.csdn.net/Wathet_blue/article/details/105401717?utm_medium=distribute.pc_relevant.none-task-blog-title-2&spm=1001.2101.3001.4242 # 问题描述: 出现错误!OperationalError: (1366, “Incorrect string value: ‘\xE4\xB9\x8B\xE7\xBE\x8E’ for column...
198 1 分钟

# 项目场景: 本人小白记录在初学 vue 中的一些小问题,在使用 npm run serve 运行 vue 项目时,出现错误 <hr style=" border:solid; width:100px; height:1px;" color=#000000 size=1"> # 问题描述: 出现错误 # 原因分析: 没有引入相关依赖 # 解决方案: 需要执行 npm install引入相关依赖即可解决问题 document.querySelectorAll('.github-emoji') .forEach(el...
762 1 分钟

python 前端框架 标题import java.util.Scanner;...Scanner in = new Scanner (System.in);// 输入 Scan 之后,按下键盘 Alt + “/” 键,Eclipse 下自动补全。System.out.println (in.nextLine ());System.out.println ("Hello" + "world.");pwd/usr/home/chris/binls -latotal 2drwxr-xr-x 2 chris chris 11 Jan 10 16:48...
288 1 分钟

python 前端框架 # 01django-hello world 简单例子 加粗样式 日期:2019——09——26 IT 人: 小海豚 学习内容: 创建一个新的 django 文件 命令: hdjango—admin startproject mywebsite创建文件 开启服务器 hPython manage.py runserver启动服务器 成功 创建一个 views 文件 Python 的 在其中编辑 在 url 中修改 在浏览器中进行刷新 注意:服务器要开启 h Python manage.py runserve 原文出自[易百教程] 转载请保留原文链接:...