上一页 1 2 3 4 5 6 ··· 21 下一页
摘要: import { usePathname, useSearchParams } from 'next/navigation' import { PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, Paginat 阅读全文
posted @ 2024-08-29 22:03 红苹果学园 阅读(39) 评论(0) 推荐(0) 编辑
摘要: 获取屏幕视窗高度 100,直接使用 window.innerHeight,页面未加载完也可以,浏览器的属性 阅读全文
posted @ 2024-08-29 21:59 红苹果学园 阅读(22) 评论(0) 推荐(0) 编辑
摘要: //Npm npm install @react-oauth/google@latest //Yarn yarn add @react-oauth/google@latest在首页中引入 GoogleOAuthProvider,并写上google后台的clientId /*index.js*/ im 阅读全文
posted @ 2024-08-08 21:17 红苹果学园 阅读(21) 评论(0) 推荐(0) 编辑
摘要: SEO META in 1 CLICK 谷歌插件可以查看网站seo内容,包括title description等信息。下载地址:https://www.chajianxw.com/developer/14081.html 下载完解压之后打开谷歌扩展程序拖入即可。 使用方式:打开需要查看的网站对应页面 阅读全文
posted @ 2024-07-26 19:03 红苹果学园 阅读(3) 评论(0) 推荐(0) 编辑
摘要: let mainDom = document.getElementsByClassName('scroll-smooth')[0] mainDom.scrollTo({ top: mainDom.scrollHeight, // 页面底部位置 behavior: 'smooth' // 平滑滚动 } 阅读全文
posted @ 2024-07-12 14:02 红苹果学园 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 最简单的方式是检查响应的 Content-Type 头部,看它是否指定了 JSON 类型。大多数服务器会在返回 JSON 数据时设置正确的 Content-Type 头部为 application/json。 const contentType = response.headers.get('con 阅读全文
posted @ 2024-07-11 15:25 红苹果学园 阅读(4) 评论(0) 推荐(0) 编辑
摘要: import useSWR from 'swr' function Profile() { const { data, error, isLoading } = useSWR('/api/user', fetcher) if (error) return <div>failed to load</d 阅读全文
posted @ 2024-07-11 09:28 红苹果学园 阅读(7) 评论(0) 推荐(0) 编辑
摘要: onSubmit={form.handleSubmit(onSubmit)} const onSubmit = (data: z.infer< typeof EmailPreferenceFormSchema>) => { const formData = new FormData() formDa 阅读全文
posted @ 2024-07-11 09:21 红苹果学园 阅读(29) 评论(0) 推荐(0) 编辑
摘要: 控制面板\用户帐户\凭据管理器、windows凭据,找到自己已登录的git 凭证删除即可 阅读全文
posted @ 2024-05-27 13:49 红苹果学园 阅读(57) 评论(0) 推荐(0) 编辑
摘要: 区别 相同点 都是两组虚拟dom的对比(react16.8之后是fiber与虚拟dom的对比) 只对同级节点进行对比,简化了算法复杂度 都用key做为唯一标识,进行查找,只有key和标签类型相同时才会复用老节点 遍历前都会根据老的节点构建一个map,方便根据key快速查找 不同点 react在dif 阅读全文
posted @ 2024-04-30 10:41 红苹果学园 阅读(139) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 21 下一页