15 lines
345 B
JavaScript
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]) => {
|
|
/* ... */
|
|
}) |