07 2024 档案
摘要:SEO META in 1 CLICK 谷歌插件可以查看网站seo内容,包括title description等信息。下载地址:https://www.chajianxw.com/developer/14081.html 下载完解压之后打开谷歌扩展程序拖入即可。 使用方式:打开需要查看的网站对应页面
阅读全文
摘要:let mainDom = document.getElementsByClassName('scroll-smooth')[0] mainDom.scrollTo({ top: mainDom.scrollHeight, // 页面底部位置 behavior: 'smooth' // 平滑滚动 }
阅读全文
摘要:最简单的方式是检查响应的 Content-Type 头部,看它是否指定了 JSON 类型。大多数服务器会在返回 JSON 数据时设置正确的 Content-Type 头部为 application/json。 const contentType = response.headers.get('con
阅读全文
摘要:import useSWR from 'swr' function Profile() { const { data, error, isLoading } = useSWR('/api/user', fetcher) if (error) return <div>failed to load</d
阅读全文
摘要:onSubmit={form.handleSubmit(onSubmit)} const onSubmit = (data: z.infer< typeof EmailPreferenceFormSchema>) => { const formData = new FormData() formDa
阅读全文