摘要: 重学前端 - react 项目第一节:创建react 项目 简介:之前一直使用的都是 vue 全家桶开发项目,现在在新的项目上开始使用react开发。 现在开始在重新学习一下 react 相关技术。 本项目使用: react 18.1.0 react-router-dom 6.3.0 管理路由 re 阅读全文
posted @ 2022-05-14 23:56 影的记忆 阅读(52) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/lovewhatIlove/p/16174107.html 阅读全文
posted @ 2022-05-13 15:46 影的记忆 阅读(8) 评论(0) 推荐(0) 编辑
摘要: https://zhuanlan.zhihu.com/p/431389907 阅读全文
posted @ 2022-05-13 10:21 影的记忆 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 学习 React 之 Context 使用 记录一次React context 使用 React.createContext Api 新建文件 contexts.js 文件用来存放 context 对象 import React from "react"; const ThemetContext = 阅读全文
posted @ 2022-05-05 11:39 影的记忆 阅读(33) 评论(0) 推荐(0) 编辑
摘要: 浏览器加载过程 前言: 浏览器从输入URL 到加载页面中间经历哪些过程是面试中经常提到的问题,现在总结内容如下 输入URl地址 输入URL地址,浏览器开启线程,对输入的地址进行解析 域名组成 protocol:协议头,比如http,https,ftp等; host:主机域名或者IP地址; port: 阅读全文
posted @ 2022-04-25 22:52 影的记忆 阅读(273) 评论(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 影的记忆 阅读(128) 评论(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 影的记忆 阅读(383) 评论(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 影的记忆 阅读(955) 评论(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 影的记忆 阅读(1029) 评论(0) 推荐(0) 编辑