-
React钩子axios-hooks为axios提供支持
资源介绍
轴索钩
对React挂钩,具有对服务器端渲染的内置支持。
特征
您熟悉的所有
零配置,但需要时可配置
单行使用
与SSR一起使用时超级简单
安装
npm install axios axios-hooks
axios是一个对等依赖项,需要显式安装
快速开始
import useAxios from 'axios-hooks'
function App ( ) {
const [ { data , loading , error } , refetch ] = useAxios (
'https://reqres.in/api/users?delay=1'
)
if ( loading ) return < p> Loading... < / p >
if ( error ) return < p> Error! < / p >
return (