不使用.then()就可以得到承诺的回报

时间:2019-03-12 14:41:26

标签: javascript promise callback

正如标题所述,我想从.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()的长链

0 个答案:

没有答案