为什么我的Rails应用程序无法捕获我的条带错误?我在正确使用救援吗?

问题描述

我正在测试我的条纹付款页面,但是当我输入错误的详细信息时,不会捕获该错误,而是将我重定向到website.co.uk/subscriptions。

这是怎么回事?我正在适当地使用救援吗?我已经尝试了 Rescue Stripe :: CardError 和普通的 rescue ,但是这些错误似乎并未被捕获....

如果有人可以伸出援手告诉我发生了什么,我将非常感激。

  def create

    @account = User.find_by_id(params[:account_id])
    key = @account.access_code
    Stripe.api_key = key
    account_suid = @account.uid
    @order = Order.find(params[:order])
    charge = @order.amount * 100
    fee = @order.amount * 1
  
    token = params[:stripeToken]
    customer = Stripe::Customer.create(email: @order.email,source: token)
 
    begin

     Stripe::PaymentIntent.create({
       customer: customer,amount: (charge).to_i,confirm: true,currency: 'gbp',payment_method_types: ['card'],application_fee_amount: (fee).to_i,},{
       stripe_account: account_suid
     })
    options = {
      stripe_id: customer.id
    }

    options.merge!(
      card_last4: params[:user][:card_last4],card_exp_month: params[:user][:card_exp_month],card_exp_year: params[:user][:card_exp_year],card_type: params[:user][:card_brand]
    )

    OrderFiniJob.perform_now(@order)
    OrderMailer.recived(@order).deliver_now
    redirect_to session.delete(:return_to),notice: "Your order has been successful ??"

    rescue Stripe::CardError => e
      flash[:error] = e.message
      format.html { redirect_to new_subscription_path(:account_id => @account,:amount => @order.amount,:order => @order),notice: "There has been an error with your payment. Please try again. Errorcode: 1" }
  
    rescue => e
      flash[:error] = e.message
      format.html { redirect_to new_subscription_path(:account_id => @account,notice: "There has been an issue. Errorcode: 222" }

    rescue ActiveRecord::RecordNotFound
      # handle not found error
      format.html { redirect_to new_subscription_path(:account_id => @account,notice: "There has been an issue. Errorcode: 333" }
    rescue ActiveRecord::ActiveRecordError
      # handle other ActiveRecord errors
      format.html { redirect_to new_subscription_path(:account_id => @account,notice: "There has been an issue. Errorcode: 444" }
    rescue # StandardError
    format.html { redirect_to new_subscription_path(:account_id => @account,notice: "There has been an issue. Errorcode: 555" }
    rescue Exception
      format.html { redirect_to new_subscription_path(:account_id => @account,notice: "There has been an issue. Errorcode: 666" }
    end

  end

解决方法

我建议您为每个rescue添加一些日志,以便您可以在日志中看到被击中的日志,看看是否有帮助。

相关问答

依赖报错 idea导入项目后依赖报错,解决方案:https://blog....
错误1:代码生成器依赖和mybatis依赖冲突 启动项目时报错如下...
错误1:gradle项目控制台输出为乱码 # 解决方案:https://bl...
错误还原:在查询的过程中,传入的workType为0时,该条件不起...
报错如下,gcc版本太低 ^ server.c:5346:31: 错误:‘struct...