在我的 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