Braintree-如何从交易或订阅中获取last_4信用卡详细信息

时间:2016-05-27 04:23:46

标签: ruby-on-rails ruby-on-rails-4 credit-card braintree

resultTransaction.sale()的{​​{1}},如何在付款中访问信用卡详细信息?

我有以下方法:

Subscription.create()

如您所见,该计划接受一次性捐款或每月订阅。制作任何一个时,我想获得信用卡详细信息,如last_4,以显示在自定义收据中。

2 个答案:

答案 0 :(得分:0)

你可以打电话

result.last_4

获取信用卡号码的最后4位数字。  如需更多帮助,请访问here

答案 1 :(得分:0)

要访问信用卡字段,您需要输入

$(document).ready(function(){

    $("#1").click(function(){

        $("#iframe").attr("src", 'reports\Report1.pdf'); 
        $("#iframe").contentWindow.location.reload(true);
    });

    $("#2").click(function(){

        $("#iframe").attr("src", 'reports\Report2.pdf'); 
        $("#iframe").contentWindow.location.reload(true);
    });

    $("#3").click(function(){

        $("#iframe").attr("src", 'reports\Report3.pdf'); 
        $("#iframe").contentWindow.location.reload(true);
    });
});

您可以在事务后使用result.transaction.credit_card_details.{field you want} 暂停程序,并在控制台中键入byebug以查看结果包含的字段。