Meteor:异步回调问题

时间:2015-04-04 20:49:07

标签: javascript jquery meteor stripe-payments

目前,我让用户单击“提交”,然后在创建令牌并调用方法的位置发生单击事件。我想要做的是在收费后得到一个回调,说是否成功。如果成功,它将运行router.go到确认页面。如果不成功,则会让用户知道该卡已被拒绝。以上所有我可以编写代码,除非不停地修补,我似乎无法弄清楚如何将消息传递回事件。

这是我的服务器端方法:

  Meteor.methods({
    'chargeCard': function(token,amount,email) {
      var Stripe = StripeAPI('where the key info guys');
      // get a sync version of our API async func
      var stripeCustomersCreateSync=Meteor.wrapAsync(Stripe.customers.create,Stripe.customers);
      // call the sync version of our API func with the parameters from the method call
      var result=stripeCustomersCreateSync({
        description: 'Woot! A new customer!',
        card: token,
        email: email
      }, function(error,result) {
        if(error) {
          return error;
        }
        return 'Success';
      });
      return result;
    }
});

和我的客户端方法:

    Stripe.card.createToken({
      number: $('#cc-number').val(),
      cvc: $('#card-cvc').val(),
      exp_month: expM,
      exp_year: expY,
      name: $('#fn').val(),
      address_zip: $('#postCode').val()
    }, stripeResponseHandler);
  }
  function stripeResponseHandler(status, response) {
    var $form = $('form');

    if (response.error) {
      // Show the errors on the form
      $form.find('.validation').text(response.error.message);
      return false;
    } else {
      var token = response.id;
      var amount = 15000;
      var Payid = $('#pid').text();
      var userEmail = Leaguemembers.findOne({_id: Payid}).Email;
      Meteor.call('chargeCard', token, amount,userEmail, function (error, result) {
        console.log(error,result); alert(result); alert(error);
        }
      );
    }
  };

非常感谢任何帮助。

编辑:

我回到了后端,我可以看到通过console.log生成的错误,但仍然无法将其传递回调用的位置,以向用户显示这些错误或将其传递给确认页面。我似乎得到的都是未定义的。

1 个答案:

答案 0 :(得分:2)

meteor.call应该看起来像这样

Meteor.call('chargeCard',token,amount,username,function(err,result){
    if(!err){
       Router.go("theRoute") //if there is not error go to the route
     }else{
       console.log(err.reason) // show the error
    }
  })