文件名称:使用承诺:React hook来解决承诺
文件大小:118KB
文件格式:ZIP
更新时间:2024-03-08 08:39:25
TypeScript
使用承诺 React钩子来兑现承诺 用法 挂钩的输出undefined而承诺未解决或拒绝。 当承诺解决时,挂钩的输出就是承诺的解决值。 import usePromise from 'use-promise' ; const myPromise = ( async ( ) => 'my data' ) ( ) ; function MyReactComponent ( ) { // usePromise(myPromise) is either 'my data' or undefined const data : string = usePromise ( myPromise ) ?? '' ; return < div> { data } < / div > } 执照 :copyright:2021年至今 ,。
【文件预览】:
use-promise-main
----package.json(2KB)
----__tests__()
--------main-test.ts(704B)
----.eslintrc.json(441B)
----.github()
--------dependabot.yml(656B)
--------workflows()
----SECURITY.md(377B)
----LICENSE(1KB)
----package-lock.json(551KB)
----tsconfig.json(6KB)
----.gitignore(2KB)
----lib()
--------index.ts(560B)
----README.md(1KB)