Files
zsxt_nbzs_h5/framework/Web/public/doc-code/api/queue.js
2021-09-24 12:59:34 +08:00

15 lines
345 B
JavaScript

/* 使用关键字await */
async function doc() {
const res1 = await this.$api.apiName1(params1)
const res2 = await this.$api.apiName2(params2)
}
/* 使用$queue */
this.$api
.$queue([
this.$api.apiName1Await(params1),
this.$api.apiName2Await(params2),
])
.then(([_res1, _res2]) => {
/* ... */
})