【问题标题】:Meteorjs: Stripe Checkout errorMeteorjs:条纹结帐错误
【发布时间】: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


    【解决方案1】:

    看起来您的服务器端方法位于共享(客户端 + 服务器)目录中。确保它位于 server 文件夹中或包裹在 if (Meteor.isServer){} 块中。看看这能不能解决问题。

    (请注意,您的 Stripe 密钥不应在客户端公开)。

    【讨论】:

    • 它目前在Lib文件夹中,经过一番研究,我认为是Fiber引起的
    猜你喜欢
    • 2018-05-27
    • 2014-06-01
    • 2016-05-09
    • 2015-03-17
    • 2015-11-05
    • 2020-12-13
    • 2023-04-03
    • 2016-08-19
    • 2016-06-01
    相关资源
    最近更新 更多