获取对象数组承诺,然后迭代对象

时间:2017-11-28 14:26:56

标签: javascript arrays promise

我正在尝试创建一个名为pw_array的数组,将pw_subscribers的内容分配给该数组,然后使用第二个promise中的新键值对追加pw_array中的每个对象。我是承诺的新手,在完成这项工作时遇到了很多麻烦。现在当我在第二个promise中使用console.log(pw_customer)时,在getCustomers函数内部,它返回了我想要的内容。但是当我在console.log(pw_array)之后,它就是原始数组。

var pw_array = [];
//first promise is working correctly
var getPaywhirlSubscribers = new Promise(function(resolve, reject) {

paywhirl.Subscriptions.getsubscribers({limit:100}, function(error, pw_subscribers) {
        Promise.all(JSON.parse(pw_subscribers).forEach(function(pw_subscriber) {
             pw_array.push(pw_subscriber);
        }))
        // console.log(pw_array);
        return resolve(pw_array);
    });
});

var getGatewayReferences = function(pw_array) {
    return new Promise(function(resolve, reject) {
        Promise.all(pw_array.forEach(function(pw_customer) {
            paywhirl.Customers.getCustomer(pw_customer.customer_id, function(error, customer) {
                pw_customer.phone = customer.phone;
                pw_customer.address = customer.address;
                pw_customer.gateway_reference = customer.gateway_reference;
                // this console.log is returning what I want
                // console.log(pw_customer);
            }); 
        }));
        resolve(pw_array);
        // console.log(pw_array);
    });
};

和承诺链......

getPaywhirlSubscribers.then(getGatewayReferences).then(function(pw_array) {
  // this console.log is returning the original pw_array with pw_subscribers but not with the appended pw_customer keys
  console.log(pw_array);
});

1 个答案:

答案 0 :(得分:1)

您的所有代码都可以缩减为

var getPaywhirlSubscribers = function() {
  return new Promise(function(res, rej) {
    paywhirl.Subscriptions.getSubscribers({limit:100}, function(err, subs) {
      if (err) {
        rej(err);
      } else {
        res(JSON.parse(subs));
      }
    });
  });
};

var gatewayRefs = function(promiseOfArray) {
  return promiseOfArray.then(function(subs) {
    return Promise.all(subs.map(function(sub) {
      return new Promise(function(res, rej) {
        paywhirl.Customers.getCustomer(sub.customer_id, function(err, customer) {
          if (err) {
            rej(err);
          } else {
            res(Object.assign({}, sub, customer);
          }
        });
      });
    });
  });
};

gatewayRefs(getPaywhirlSubscribers()).then(function(arrayOfCustomers) {
  // do something with the customer array
});

请注意,如果您使用许多可用的实用程序之一自动将node.js样式的错误 - 第一个回调API转换为基于Promise的API,则可以使其更短/更简单。搜索'promise denodeify'。

您还可以想象将一些步骤拉出到.then链中以减少嵌套,但这与美国实际恕我直言一样美观。