按文档进行条带自动分页

时间:2019-05-11 12:15:39

标签: node.js stripe-payments

我直接在Stripe文档中并在正确的环境中获取代码示例。为什么代码示例失败?

// In Node 10:
for await (const customer of stripe.customers.list({limit: 3})) {
  // Do something with customer
}

这提供了错误:

for await (const customer of stripe.customers.list({limit: 3})) {
    ^^^^^

SyntaxError: Unexpected reserved word

为什么这些文档中的代码会给出错误,如何解决?

0 个答案:

没有答案