所以基本上,我需要从回调中获取一个值并返回上层函数。
function someFunction(){
const somePlugin = require('somePlugin');
somePlugin.do('blabla', function(value){//I want this value
});
return value;//To end up here, but I didn't find nothing that make that.
}
因此,它确实需要返回上层函数,因此除非有一种方法可以将return作为函数调用,否则在回调函数内调用其他函数将不起作用。