look :
Example code of using the ahooks website
export default () => {
const [ready, { toggle }] = useToggle(false);
const { data, loading } = useRequest(getUsername, {
ready,
loadingDelay: 300,
});
return (
<>
<p>
Ready: {JSON.stringify(ready)}
<button onClick={toggle} style={{ marginLeft: 16 }}>
Toggle Ready
</button>
</p>
<p>Username: {loading ? 'Loading' : data}</p>
</>
);
};
1条答案
按热度按时间gxwragnw1#
got the same issue too