红豆沙  

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 红豆沙 阅读(20) 评论(0) 推荐(0) 编辑

2023年11月27日

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

2023年7月23日

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

2023年7月11日

摘要: 设置方式:给父元素设置display: flex,子元素可以自动挤压或拉伸 flex弹性容器里的弹性盒子可以设置宽高,比如a标签设置宽高生效,不用转块 描述 属性 值 创建flex容器(父级) display: flex 主轴对齐方式 justify- content flex-start起点开始排 阅读全文
posted @ 2023-07-11 18:59 红豆沙 阅读(11) 评论(0) 推荐(0) 编辑
 
摘要: /* 双伪元素法 */ /* before解决外边距塌陷问题 */ .clearfix::before, .clearfix::after{ content:""; display: table; } /* after清除浮动 */ .clearfix::after{ clear:both; } 阅读全文
posted @ 2023-07-11 18:54 红豆沙 阅读(5) 评论(0) 推荐(0) 编辑

2023年6月23日

摘要: 标签/属性 说明 <table border="1"> border设置边框;若无默认无边框 <style> table,tr,td{ border-collapse: collapse; border-spacing: 0; } </style> css样式,变成单线表格 css样式,边框之间的间 阅读全文
posted @ 2023-06-23 11:55 红豆沙 阅读(143) 评论(0) 推荐(0) 编辑

2021年2月18日

摘要: 下载地址汇总: Python: https://www.python.org/downloads/ Selenium for python :https://pypi.python.org/pypi/selenium#downloads 下载最新版本,tar.gz的包 Pycharm:https:/ 阅读全文
posted @ 2021-02-18 17:07 红豆沙 阅读(106) 评论(0) 推荐(0) 编辑