dva 同时调用多个函数
const {
componentListData: { data: componentList = [] },
customTags: { data: customTags = [] },
computeKeys = [],
jumpUrls
} = yield all({
componentListData: yield call(service.loadComponents),
customTags: yield call(service.loadCustomTag),
computeKeys: yield call(service.loadComputeKeyList),
jumpUrls: yield call(service.loadLinkUrl),
});
网友评论