我有两个功能。
1.
async function firstFunction() {
// Do stuff here
// I can't just return doSomeOtherThings because the firstFunction
// returns different data then what doSomeOtherThings does
doSomeOtherThings();
return;
}
async function doSomeOtherThings() {
// do promise stuff here
// this function runs some db operations
}
如果我运行,firstFunction();它会执行我的doSomeOtherThings()函数,还是会提前返回并导致部分或全部 doSomeOtherThings 代码不被执行?我需要做什么吗await doSomeOtherThings()?
料青山看我应如是
互换的青春
相关分类