在我的Rails应用程序中使用Stripe为卡充电的问题

时间:2012-08-19 17:21:27

标签: javascript ruby-on-rails forms stripe-payments

我正在构建一个使用信用卡的Rails应用程序,我正在尝试使用Stripe来执行此操作。我有一些问题将数据从我的应用程序传递到Stripe以便收费。这就是我希望得到关于这个主题的帮助。

首先,我有一个标准表单(使用值代替占位符以便快速提交以进行测试)。表单成功输入名称并通过电子邮件发送到数据库中,客户的“计划”暂时在控制器中进行硬编码:

    <%= form_for @customer do |f| %>
      <div class="payment-errors"></div>
      <div class="name field">
        <%= f.label :name %>
        <%= f.text_field :name, :value => "Your name" %>
      </div>
      <div class="email field">
        <%= f.label :email %>
        <%= f.text_field :email, :value => "yourname@example.com" %>
      </div>
      <div class="cc_number field">
        <%= label_tag 'cc_number' %>
        <%= text_field_tag 'cc_number', nil, :value => "4242424242424242" %>
      </div>
      <div class="ccv field">
        <%= label_tag 'ccv' %>
        <%= text_field_tag 'ccv', nil, :value => "123" %>
      </div>
      <div class="cc_expiration field">
        <%= label_tag 'cc_month', "Expiration date" %>
        <%= text_field_tag 'cc_month', nil, :value => "12" %>
        <%= text_field_tag 'cc_year', nil, :value => "2012" %>
      </div>
      <div class="actions">
        <%= f.submit "Continue", :class => 'btn' %>
      </div>
    <% end %>

同样在上面代码所在的signups_view中,我有这个JS,mostly provided by Stripe

<script type="text/javascript">
  // this identifies your website in the createToken call below
  Stripe.setPublishableKey('<%= STRIPE['public'] %>');

  function stripeResponseHandler(status, response) {
      if (response.error) {
          // show the errors on the form
          $(".payment-errors").text(response.error.message);
          $("input[type=submit]").removeAttr("disabled");
      } else {
          var form$ = $("form");
          // token contains id, last4, and card type
          var token = response['id'];
          // insert the token into the form so it gets submitted to the server
          form$.append("<input type='hidden' name='customer[stripe_token]' id='stripeToken' value='" + token + "'/>");
          // and submit
          $('.cc_number.field, .ccv.field, .cc_expiration.field').remove();
          form$.get(0).submit();
      }
  }

  $(document).ready(function() {
    $("form").submit(function(event) {
      // disable the submit button to prevent repeated clicks
      $('input[type=submit]').attr("disabled", "disabled");

      Stripe.createToken({
          number: $('#cc_number').val(),
          cvc: $('#ccv').val(),
          exp_month: $('#cc_month').val(),
          exp_year: $('#cc_year').val()
      }, stripeResponseHandler);

      // prevent the form from submitting with the default action
      return false;
    });
  });

</script>

form$.append("<input type='hidden' name='customer[stripe_token]' id='stripeToken' value='" + token + "'/>");似乎存在问题,因为我的Ruby应用程序在到达customer[stripe_token]时会中断。

Finally, in my `customers_controller`, I have:

  def create
    @customer = Customer.new(params[:customer])
    @customer.product = 

    if @customer.save
      save_order
      redirect_to @customer
    else
      render action: 'new'
    end

  def save_order
    Stripe.api_key = STRIPE['secret']
    charge = Stripe::Charge.create(
      :amount => 20,
      :currency => "usd",
      :card => @customer.stripe_token,
      :description => "Product 1"
    )
  end

每当我提交表单时,它每次都会点击控制器中的else子句,经过大量的调试,谷歌搜索并从头开始重构并重建,我仍然难倒。

非常感谢任何帮助。

修改:添加了customer model

  attr_accessible :name, :email, :stripe_token, :product

  email_regex = /\A[\w+\-.]+@[a-z\d\-.]+\.[a-z]+\z/i

  validates :email, :presence => true,
                    :format => { :with => email_regex },
                    :length => { :minimum => 6, :maximum => 60 },
                    :uniqueness => { :case_sensitive => false }

  validates :name, :length => {:minimum => 2, :maximum => 80 }

1 个答案:

答案 0 :(得分:0)

有助于了解您的客户模型,以了解正在发生的事情。如果@ customer.save返回false,则表示验证程序可能失败。

另外,您是否将stripe_token作为模型的可访问属性?否则你将无法像你正在做的那样从表格中分配它。请注意,令牌应存储在数据库中,因为它只能使用一次。

class Customer 
  attr_accessor :stripe_token # do you have this?
end 

还有一点需要注意:您可能希望存储条带ID字段,以便以后检索客户付款并取消其帐户。