SWR的使用教程
2021/11/22 23:16:34
本文主要是介绍SWR的使用教程,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
SWR用于数据请求的 React Hooks 库,使用 SWR,组件将会不断地、自动获得最新数据流。UI 也会一直保持快速响应。
安装
yarn add swr 或者 npm install swr
使用
const { data, error, isValidating, mutate } = useSWR(key, fetcher, options)
1.封装useFetch指令
export function useFetch<Data = any, Error = any>(url: string, options: any) { const { data, error, mutate } = useSWR<Data, Error>(url, async (url) => { const response = await staticFetch(url, options); return response; }); return { data, error, mutate }; }
2.使用
const tableData = useFetch(getListInfo, { method: ‘GET’ });
这篇关于SWR的使用教程的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-05并查集详解与实现教程
- 2024-11-05大厂数据结构与算法入门指南
- 2024-11-05大厂算法与数据结构入门指南
- 2024-11-05二叉树入门教程:轻松掌握基础概念与操作
- 2024-11-05红黑树入门教程:从零开始理解红黑树
- 2024-11-05初学者必备:链表基础知识详解
- 2024-11-05平衡树入门教程:理解、构建与应用
- 2024-11-05数据结构入门教程:轻松掌握基础知识
- 2024-11-05数据结构与算法入门教程
- 2024-11-05优先队列入门教程:理解与实现