我正在使用带有Node.js的Stripe来获得所有费用的清单,结果中包含了total_count。我这样称呼它:

stripe.charges.list({include: ['total_count'] }, cb)


但是我从API收到以下错误:

Unhandled rejection Error: Invalid array


(不包括include参数可以使结果正常。)

我是否错误地指定了include参数?

最佳答案

我只是尽力而为,此代码按预期工作:

stripe.charges.list(
  { limit: 3 , "include[]": "total_count"},
  function(err, charges) {
    console.log("Charges : ", JSON.stringify(charges));
  }
);

07-28 09:03