正如标题所述,我想从.then()
内返回一个值
我有以下代码:
function getResponse() {
return rp(options)
.then(function (response) {
var result = [];
// do manipulation and add data to result
return result;
})
}
是否可以不使用以下方法获得结果的值?
getAWE().then((result) => {console.log(result)});
我想使用该值而不必在.then()
中使用它,因此我可以创建类似于上述函数的多个函数,而没有.then()
的长链