@2bitlab/queue-load 中文文档教程
queue-load
队列加载工具
Usage
import { queueLoaderFactory } from '@/utils/queueLoad'
// 声明队列方法
const queueLoader = queueLoaderFactory.getQueueLoader({
key: 'apiDataGetData', // 队列识别key,会基于这个key建立队列,一种key一个队列
loadDataFunc: async (props: any) => {
// 队列需要执行的方法
const { postData } = props
// do you want to do
// 可以和 state 结合做异步联动
if (entryData) {
commit('setData', { entryKey, value: entryData })
}
return entryData
}
})
// 执行队列
value = await queueLoader.getData({
postData: { entryKey, dataId },
passLoading // 是否跳过队列,为true 时立即执行不进队列,为false时 不会有返回值
})
更多
你可能也喜欢
- 9worphi-helpers 中文文档教程
- @01ht/ht-toolbar-signin 中文文档教程
- @10yun/cv-pc-markdown-show 中文文档教程
- @4so-fourseasons/react-hoc-spinners 中文文档教程
- @51npm/freedom-middleware-webpack2 中文文档教程
- @a2lix/symfony-collection 中文文档教程
- @ab.progr/nodemon-config 中文文档教程
- @abdullahceylan/prettier-config 中文文档教程
- @ablack/fundraising-templates-multisig 中文文档教程
- @acorex/components 中文文档教程