红豆沙  

2024年11月6日

摘要: import pymysql connection = pymysql.connect( host='localhost', port=3306, database='your_database', user='your_user', password='your_password', charse 阅读全文
posted @ 2024-11-06 11:43 红豆沙 阅读(2) 评论(0) 推荐(0) 编辑
 
摘要: 1.列表推导式:生成新的列表 [expression for item in iterable] numbers = [1, 2, 3, 4, 5] squares = [x**2 for x in numbers] print(squares) # 输出: [1, 4, 9, 16, 25] 2. 阅读全文
posted @ 2024-11-06 10:36 红豆沙 阅读(1) 评论(0) 推荐(0) 编辑

2024年11月5日

摘要: from pymysql import * arr1 = [ ['a','aa','aaa'], ['b','bb','bbb'], ['c','cc','ccc'] ] # 创建connection连接 user一般为root connection = connect( host='localho 阅读全文
posted @ 2024-11-05 18:02 红豆沙 阅读(11) 评论(0) 推荐(0) 编辑
 
摘要: import pandas as pd import pymysql from datetime import datetime # 定义一个自增的全局变量 counter = 1 def increment(): global counter counter += 1 return counter 阅读全文
posted @ 2024-11-05 17:55 红豆沙 阅读(5) 评论(0) 推荐(0) 编辑

2023年12月16日

摘要: 本地 命令 作用 注意 git -v 查看 git 版本 git init 初始化 git 仓库 git add 文件标识 暂存某个文件 文件标识以终端为起始的相对路径 例:git add page/login/index.html git add . 暂存所有文件 git commit -m '说 阅读全文
posted @ 2023-12-16 19:45 红豆沙 阅读(26) 评论(0) 推荐(0) 编辑

2023年11月27日

摘要: (1) 通过谷歌应用商店安装 (国外网站) (2) 极简插件: 下载 → 开发者模式 → 拖拽安装 → 插件详情允许访问文件 https://chrome.zzzmh.cn/index 下载的文件,解压。 chrome浏览器,右上角点击-》更多工具=》扩展程序。打开开发者模式 将解压的文件拖到空白区 阅读全文
posted @ 2023-11-27 11:28 红豆沙 阅读(570) 评论(0) 推荐(0) 编辑

2023年11月24日

摘要: axios官网 https://axios-http.com/ 路由导航守卫 - 全局前置守卫 https://v3.router.vuejs.org/zh/guide/advanced/navigation-guards.html#%E5%85%A8%E5%B1%80%E5%89%8D%E7%BD 阅读全文
posted @ 2023-11-24 16:07 红豆沙 阅读(16) 评论(0) 推荐(0) 编辑

2023年10月10日

摘要: const res = await axios.get('https://applet-base-api-t.itheima.net/bill', { params: { creator: '小黑' } }) post请求不需要在里面嵌套data对象 const res = await axios. 阅读全文
posted @ 2023-10-10 10:57 红豆沙 阅读(67) 评论(0) 推荐(0) 编辑

2023年7月23日

摘要: 阅读全文
posted @ 2023-07-23 18:33 红豆沙 阅读(32) 评论(0) 推荐(0) 编辑

2023年7月11日

摘要: 设置方式:给父元素设置display: flex,子元素可以自动挤压或拉伸 flex弹性容器里的弹性盒子可以设置宽高,比如a标签设置宽高生效,不用转块 描述 属性 值 创建flex容器(父级) display: flex 主轴对齐方式 justify- content flex-start起点开始排 阅读全文
posted @ 2023-07-11 18:59 红豆沙 阅读(16) 评论(0) 推荐(0) 编辑