如何避免承诺嵌套

时间:2017-12-07 05:28:39

标签: firebase google-cloud-functions

我有一种感觉,我在下面的简单函数中做了一个过度杀戮的嵌套,它只是从一个位置读取一个值并将其写入另一个位置。

有没有办法以某种方式简化它?

exports.myFunc = functions.database.ref('...').onCreate(event => {
    const list_id = event.params.list_id;
    return new Promise(function(resolve, reject){
        event.data.adminRef.root.child('lists').child(list_id).child('owner').once('value').then(function(snap){
            const owner_id = snap.val();
            if (owner_id != null) {
                event.data.adminRef.root.child('users').child(owner_id).child('whatever').child('whatever2').set(true)
                    .then(function() {
                        resolve();
                    },
                    function(err) {
                        reject();
                    }
                )
            } else {
                reject();
            }
        });
    });
})

1 个答案:

答案 0 :(得分:2)

如果你有现成的承诺,你不需要新的承诺。您可以从then返回承诺以继续链接。

exports.myFunc = functions.database.ref('...').onCreate(event => {
    const list_id = event.params.list_id;
    return event.data.adminRef.root.child('...').once('value')
    .then(function(snap){
        const owner_id = snap.val();
        if (owner_id != null) {
            return event.data.adminRef.root.child('...').set(true)
        } else {
            return Promise.reject('error message')
        }
    });
})