摘要: Render API ReactDOM.render(<App />, root); // 17 ReactDOM.createRoot(root).render(<App />); //18, 并发模式 setState 自动批处理 批处理:多个setState只会触发一次渲染 之前 事件处理函数 阅读全文
posted @ 2024-04-16 17:02 让速不让路 阅读(5) 评论(0) 推荐(0) 编辑
摘要: ## 发送带凭据的请求 ``` fetch('https://example.com', { credentials: 'include' }); ``` 当请求使用 credentials: 'include' 时,响应的 Access-Control-Allow-Origin 不能使用通配符 " 阅读全文
posted @ 2023-05-29 08:35 让速不让路 阅读(51) 评论(0) 推荐(0) 编辑
摘要: The error message "http: server gave HTTP response to HTTPS client" occurs when a client tries to access a server through an HTTPS connection, but the 阅读全文
posted @ 2023-04-20 00:30 让速不让路 阅读(1350) 评论(0) 推荐(0) 编辑
摘要: 要创建一个私有的Docker镜像仓库,可以使用Docker官方提供的开源工具Docker Registry或第三方工具如Harbor等。 下面是使用Docker Registry创建私有Docker镜像仓库的步骤: 安装Docker Registry 可以通过在Docker Hub上下载Docker 阅读全文
posted @ 2023-04-19 11:18 让速不让路 阅读(103) 评论(0) 推荐(0) 编辑
摘要: 要在Ubuntu中安装Docker,可以按照以下步骤进行: 卸载旧版本的Docker(如果已安装) 如果已经安装了旧版本的Docker,可以使用以下命令卸载: sudo apt-get remove docker docker-engine docker.io containerd runc 安装D 阅读全文
posted @ 2023-04-19 11:06 让速不让路 阅读(42) 评论(1) 推荐(0) 编辑
摘要: 将dns修改为4.2.2.1和4.2.2.2即可登录。 阅读全文
posted @ 2023-04-08 02:22 让速不让路 阅读(693) 评论(0) 推荐(0) 编辑
摘要: Person: Please give me an example where gin implements server push and the front end receives data. ChatGPT: Sure! Here's an example of how you could 阅读全文
posted @ 2023-03-29 23:05 让速不让路 阅读(47) 评论(0) 推荐(0) 编辑
摘要: Person: There are many form pages in the system (which can be viewed or edited). Different pages have different fields, and the fields interact with e 阅读全文
posted @ 2023-03-28 17:08 让速不让路 阅读(57) 评论(0) 推荐(0) 编辑
摘要: Person: A large typescript project takes a long time to start every time, using the default configuration of webpack5, is there any optimization solut 阅读全文
posted @ 2023-03-27 10:55 让速不让路 阅读(41) 评论(0) 推荐(0) 编辑
摘要: 在设计使用 Redis 的系统和使用 Gin 的数据库时,需要牢记几个架构注意事项。 这是一个可能的架构设计: API 层:API 层处理传入的请求并提供响应。 该层负责验证输入、验证用户并将请求路由到适当的服务层。 服务层:服务层包含应用程序的业务逻辑。 它应该负责与 Redis 和数据库进行交互 阅读全文
posted @ 2023-03-26 11:41 让速不让路 阅读(192) 评论(0) 推荐(0) 编辑