摘要: https://www.cnblogs.com/lovewhatIlove/p/16174107.html 阅读全文
posted @ 2022-05-13 15:46 影的记忆 阅读(5) 评论(0) 推荐(0) 编辑
摘要: https://zhuanlan.zhihu.com/p/431389907 阅读全文
posted @ 2022-05-13 10:21 影的记忆 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 学习 React 之 Context 使用 记录一次React context 使用 React.createContext Api 新建文件 contexts.js 文件用来存放 context 对象 import React from "react"; const ThemetContext = 阅读全文
posted @ 2022-05-05 11:39 影的记忆 阅读(26) 评论(0) 推荐(0) 编辑
摘要: 浏览器加载过程 前言: 浏览器从输入URL 到加载页面中间经历哪些过程是面试中经常提到的问题,现在总结内容如下 输入URl地址 输入URL地址,浏览器开启线程,对输入的地址进行解析 域名组成 protocol:协议头,比如http,https,ftp等; host:主机域名或者IP地址; port: 阅读全文
posted @ 2022-04-25 22:52 影的记忆 阅读(263) 评论(0) 推荐(0) 编辑
摘要: <template> <div id="app"> <router-view /> </div> </template html::-webkit-scrollbar, body::-webkit-scrollbar,#app::-webkit-scrollbar { display: none; 阅读全文
posted @ 2022-04-07 15:23 影的记忆 阅读(124) 评论(0) 推荐(0) 编辑
摘要: 安装 webpack-bundle-analyzer npm i webpack-bundle-analyzer -D 配置vue.config.js module.exports = defineConfig({ ...其他配置 chainWebpack: config => { config.p 阅读全文
posted @ 2022-03-30 14:05 影的记忆 阅读(369) 评论(0) 推荐(0) 编辑
摘要: vue使用wx-open-launch-weapp 官方文档 <template> <div style="width: 100%; height: 100%;"> 按钮按钮: <wx-open-launch-weapp username="gh_" path="/pages/index/index 阅读全文
posted @ 2022-03-28 09:43 影的记忆 阅读(724) 评论(0) 推荐(0) 编辑
摘要: Git 基础使用 简介:在日常开发工作中避免不了要使用 git 进行代码管理。下面是总结一些常用的git使用方法。 git 设置代理 说明:git 设置代理可以进行FQ下载 使用命令设定git 的代理方式。 // socks代理: git config --global http.proxy soc 阅读全文
posted @ 2022-03-18 15:46 影的记忆 阅读(27) 评论(0) 推荐(0) 编辑
摘要: Xcode 配置开发者账号 简介:在iOS 开发过程中,要打包到手机上是需要登陆账号和配置对应证书的。 配置账号 打开Xcode -> Preferences -> Accounts -> 左下角 + -> App ID -> 输入账号密码进行认证 输入正确的账号密码认证通过后会出现对应的证书,下载 阅读全文
posted @ 2022-03-17 10:09 影的记忆 阅读(978) 评论(0) 推荐(0) 编辑
摘要: pod 安装 相关依赖包 新建podfile 文件 pod init 编辑podfile文件添加第三方库 // pod '第三方依赖库名', '版本号' pod 'SDWebImageSwiftUI', '~> 3.1.1' 安装 pod install pod install 安装会非常慢建议使用 阅读全文
posted @ 2022-03-17 09:52 影的记忆 阅读(70) 评论(0) 推荐(0) 编辑