1

在我的 rails 4 应用程序中,我使用 Braintree 沙盒测试事务网关。我能够执行交易并且交易详细信息在我的沙盒帐户中可见。但我的问题是如何将交易详细信息存储到我的数据库中的表中?

例如:交易 ID、金额、客户详细信息等?

我的代码如下:

def payment_process  
    @paymentamnt=@@deviceprice.to_i
    @result = Braintree::Transaction.sale(
              amount: @paymentamnt,
              payment_method_nonce: params[:payment_method_nonce])
    if @result.success?
      redirect_to payments_customers_path
    else
      flash[:alert] = "Something went wrong while processing your transaction. Please try again!"
      gon.client_token = generate_client_token
      render :new
    end
end
4

1 回答 1

3

您要查找的值存储在 的transaction对象中@result

所以你可以像这样访问它们:

puts @result.transaction.amount
puts @result.transaction.order_id

等等

于 2015-10-23T14:19:34.743 回答