我想检查是否从用户处调用了.then()
,否则使该函数同步,这是我的函数的代码
var fun = (ms, unit, asy) => {
var second = 1000,
minute = second * 60,
hour = minute * 60,
day = hour * 24,
week = day * 7,
month = week * 4,
year = day * 365; // or 1000 * 60 * 60 * 24 * 7 * 4 * 12
if ( asy ) {
return new Promise(function (fulfill, reject){
try {
var converted;
switch (unit) {
case 'something':
// Do something
break;
case 'something_else' // etc etc
}
fulfill(converted)
} catch (err) {
reject(err)
}
});
} else {
switch (unit) {
case 'something':
// Do something
break;
case 'something_else' // etc etc
// ...
}
}
}
}
现在,它会检查
asy
的值是否为true,然后将其设置为asynchronous
,但是(如果可能的话)我希望将其设置为默认值synchronous
,只要用户不调用.then()
。 最佳答案
无法执行此操作,无论是否调用then
,您的函数都已执行,因此您无法及时返回。
可以在异步js编程中使用“经典”回调方式:
function doSomething(arg1, ... , callback)
{
if(callback !== undefined) {
// Do async way and resolve with the callback
} else {
// Do sync
}
}