摘要: 一. NumPy介绍 1. 介绍 NumPy(Numerical Python)是Python的一个开源的数值计算库。 可用来存储和处理大型矩阵,比Python自身的嵌套列表结构要高效的多, 支持大量的维度数组与矩阵运算,此外也针对数组运算提供大量的数学函数库, 包括数学、逻辑、形状操作、排序、选择 阅读全文
posted @ 2024-03-07 11:10 测试圈的彭于晏 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 定义错误页面 # 1. 配置路由 # 2. 定义页面组件 # 3. 访问不存在的路由会跳转错误页面 1. 定义路由index.js import NotFound from '../views/NotFound.vue' // 错误页面,优先级最低 { path: '/:pathMatch(.*)* 阅读全文
posted @ 2023-07-24 17:18 测试圈的彭于晏 阅读(9) 评论(0) 推荐(0) 编辑
摘要: ```python # 本案例使用到 关闭冒泡 和v-show 方法 ``` ```html Document 模态框 --> --> --> 登录 --> --> --> 用户名: 登录 ``` 阅读全文
posted @ 2023-06-28 15:40 测试圈的彭于晏 阅读(4) 评论(0) 推荐(0) 编辑
摘要: + ***VM-16-虚拟机的安装步骤*** ***1. 点击链接下载*** ```pythpn # VM虚拟机 https://www.aliyundrive.com/s/2Hmbran1LKQ 提取码: 8tb3 ``` ***2. 下载完成后打开,点击下一步*** ![](https://im 阅读全文
posted @ 2023-06-08 15:46 测试圈的彭于晏 阅读(44) 评论(0) 推荐(0) 编辑
摘要: ###1. 填充管理留言html ```html {% if user.messages %} 序号 留言 时间 操作 {% for message in user.messages %} {{ loop.index }} {{ message.content }} {{ message.mdate 阅读全文
posted @ 2023-06-01 17:58 测试圈的彭于晏 阅读(7) 评论(0) 推荐(0) 编辑
摘要: ```python # 前提: settings.py已经配置链接了数据库 # 两张表想要互相调用 必须定义主外键约束,外键定义在多的a56爆大奖在线娱乐 ``` ![](https://img2023.cnblogs.com/blog/2663107/202305/2663107-2023053115052619 阅读全文
posted @ 2023-06-01 17:57 测试圈的彭于晏 阅读(12) 评论(0) 推荐(0) 编辑
摘要: ###1. 配置bootstrap模板 ```python # 中文文档: https://flask-bootstrap-zh.readthedocs.io/zh/latest/ # 样式文档: https://v3.bootcss.com/getting-started/#download # 阅读全文
posted @ 2023-06-01 17:57 测试圈的彭于晏 阅读(35) 评论(0) 推荐(0) 编辑
摘要: ###准备工作 ####1. Manager ```python # 1. 安装flask-script pip install flask-script # 使用里面的Manager进行命令得到管理和使用-app.py 'from flask_script import Manager' from 阅读全文
posted @ 2023-05-31 11:19 测试圈的彭于晏 阅读(5) 评论(0) 推荐(0) 编辑
摘要: #### 初体验 ```python # 1. 创建虚拟环境 # 2. 安装Flask pip install flask==2.0.2 -i https://pypi.tuna.tsinghua.edu.cn/simple/ # 3. 创建settings.py配置文件 ''' ENV = "de 阅读全文
posted @ 2023-05-31 11:19 测试圈的彭于晏 阅读(25) 评论(0) 推荐(0) 编辑
摘要: # 运行时提示: pytest - Windows fatal exception: code 0x8001010d # 解决方法:pytest.ini 中加上 no:faulthandler addopts = -vs -p no:faulthandler --html ../report/re. 阅读全文
posted @ 2023-04-20 17:43 测试圈的彭于晏 阅读(101) 评论(0) 推荐(0) 编辑