【发布时间】:2014-07-18 15:46:32
【问题描述】:
当我像这样使用_wrapAsync 时:
var stripeChargeCreate = Meteor._wrapAsync(_.bind(Stripe.charges.create,Stripe));
var charge = stripeChargeCreate({
amount: amount,
currency: "usd",
card: token,
description: description
});
我收到以下错误:Object # has no method 'createUrlData'
我错过了什么?
【问题讨论】:
标签: asynchronous meteor stripe-payments