Rails:无法向用户显示Stripe :: InvalidRequestError

时间:2015-11-14 16:04:21

标签: ruby-on-rails ruby ruby-on-rails-4 stripe-payments

我使用条带作为支付网关(嵌入式表格)。它工作正常。

但是,我无法在我的网站上显示卡错误。 操作控制器的错误页面中显示的错误!

http://sendgrid.com/

我的控制器

def process
 begin

 customer = Stripe::Customer.create(
    :email => params[:stripeEmail],
    :source  => params[:stripeToken]
  )

  charge = Stripe::Charge.create(
    :customer    => customer.id,
    :amount      => totalprice, #Amount should be in cents
    :description => orderid,
    :currency    => 'aud'
  )


  rescue Stripe::CardError => e
  flash[:error]= e.message <-------------not working?!
  redirect_to root_url
  end

  showconfirmation
end

我想在我的网站上将条纹错误显示为flash消息。怎么解决? 感谢。

1 个答案:

答案 0 :(得分:2)

在您的代码中,您正在从Stripe::CardError开始营救,但最初您获得的是Stripe::InvalidRequestError。那么,这就是为什么你的代码无法从错误中解脱出来的原因。

当您的请求包含无效参数时,会出现无效的请求错误。请参阅Stripe API Error reference

您必须确保发送正确的参数。或者,您可以根据需要从Stripe::InvalidRequestError进行救援:

begin
  customer = Stripe::Customer.create(
      :email => params[:stripeEmail],
      :source  => params[:stripeToken]
  )

  charge = Stripe::Charge.create(
      :customer    => customer.id,
      :amount      => totalprice, #Amount should be in cents
      :description => orderid,
      :currency    => 'aud'
  )

rescue Stripe::CardError, Stripe::InvalidRequestError => e
  flash[:error]= e.message
  redirect_to root_url
end