【发布时间】:2015-06-23 06:37:26
【问题描述】:
我在 Stripe 结账时不断从服务器收到错误,我按照本教程进行操作 (http://www.wsvincent.com/meteor-stripe-checkout/)
虽然我一直收到异常,但是事务在Stripe中注册了,说明没问题,但我只想知道这个错误是怎么回事?
Template.bookingPost2.events({
"click #accept": function(event, template){
event.preventDefault();
StripeCheckout.open({
key: 'public_key',
amount: 5000, // this is equivalent to $50
name: 'Meteor Tutorial',
description: 'On how to use Stripe ($50.00)',
panelLabel: 'Pay Now',
token: function(res) {
stripeToken = res.id;
console.info(res);
Meteor.call('chargeCard', stripeToken);
}
});
}
});
服务器端
Meteor.methods({
'chargeCard': function(stripeToken) {
check(stripeToken, String);
var Stripe = StripeAPI('secret_key');
Stripe.charges.create({
source: stripeToken,
amount: 5000, // this is equivalent to $50
currency: 'usd'
}, function(err, charge) {
console.log(err, charge);
});
}
});
错误信息
Exception while simulating the effect of invoking 'chargeCard' ReferenceError: StripeAPI is not defined
at Meteor.methods.chargeCard (http://localhost:3000/lib/collections/stripeStuff.js?c2bc7ea1ef220be9a0448871dc837fcc30c64138:4:20)
at http://localhost:3000/packages/ddp.js?d1840d3ba04c65ffade261f362e26699b7509706:4269:25
at _.extend.withValue (http://localhost:3000/packages/meteor.js?43b7958c1598803e94014f27f5f622b0bddc0aaf:955:17)
at _.extend.apply (http://localhost:3000/packages/ddp.js?d1840d3ba04c65ffade261f362e26699b7509706:4260:54)
at _.extend.call (http://localhost:3000/packages/ddp.js?d1840d3ba04c65ffade261f362e26699b7509706:4138:17)
at TokenCallback.StripeCheckout.open.token [as fn] (http://localhost:3000/client/helper/booking2.js?49ebf774558be893cec6b35973bdb33ebfc76887:22:16)
at TokenCallback.trigger (https://checkout.stripe.com/checkout.js:2:13749)
at TokenCallback.__bind [as trigger] (https://checkout.stripe.com/checkout.js:2:13081)
at IframeView.onToken (https://checkout.stripe.com/checkout.js:2:11783)
at IframeView.closed (https://checkout.stripe.com/checkout.js:2:18825) ReferenceError: StripeAPI is not defined
at Meteor.methods.chargeCard (http://localhost:3000/lib/collections/stripeStuff.js?c2bc7ea1ef220be9a0448871dc837fcc30c64138:4:20)
at http://localhost:3000/packages/ddp.js?d1840d3ba04c65ffade261f362e26699b7509706:4269:25
at _.extend.withValue (http://localhost:3000/packages/meteor.js?43b7958c1598803e94014f27f5f622b0bddc0aaf:955:17)
at _.extend.apply (http://localhost:3000/packages/ddp.js?d1840d3ba04c65ffade261f362e26699b7509706:4260:54)
at _.extend.call (http://localhost:3000/packages/ddp.js?d1840d3ba04c65ffade261f362e26699b7509706:4138:17)
at TokenCallback.StripeCheckout.open.token [as fn] (http://localhost:3000/client/helper/booking2.js?49ebf774558be893cec6b35973bdb33ebfc76887:22:16)
at TokenCallback.trigger (https://checkout.stripe.com/checkout.js:2:13749)
at TokenCallback.__bind [as trigger] (https://checkout.stripe.com/checkout.js:2:13081)
at IframeView.onToken (https://checkout.stripe.com/checkout.js:2:11783)
at IframeView.closed (https://checkout.stripe.com/checkout.js:2:18825)
【问题讨论】:
标签: javascript meteor stripe-payments meteor-blaze meteor-helper