条带结帐与Rails充电不同的金额

时间:2015-04-21 08:15:52

标签: ruby-on-rails ruby-on-rails-3 token payment stripe-payments

我正在关注Stripe的rails指南以设置基本结帐。我得到了它的工作,但只有一个5美元的金额。

无法找到有关添加其他金额的文档。我想要一个页面有5美元,10美元和15美元的结账选项(我正在创建一个捐赠页面)。

我知道我可以为每个付款金额创建多个控制器,但这似乎有些过分。任何建议都不仅仅是值得赞赏的。到目前为止,这是我的代码......

charges_controller.rb:

class ChargesController < ApplicationController
  def new
  end

  def create
    # Amount in cents
    @amount = 500

    customer = Stripe::Customer.create(
      :email => 'example@stripe.com',
      :card  => params[:stripeToken]
    )

    charge = Stripe::Charge.create(
      :customer    => customer.id,
      :amount      => @amount,
      :description => 'Rails Stripe customer',
      :currency    => 'usd'
    )

  rescue Stripe::CardError => e
    flash[:error] = e.message
    redirect_to charges_path
  end
end

new.html.erb(费用查看页面):

<%= form_tag charges_path do %>
  <article>
    <label class="amount">
      <span>Amount: $5.00</span>
    </label>
  </article>

  <script src="https://checkout.stripe.com/checkout.js" class="stripe-button"
      data-key="<%= Rails.configuration.stripe[:publishable_key] %>"
      data-description="A month's subscription"
      data-amount="500"></script>
<% end %>

charges.html.erb(布局):

<!DOCTYPE html>
<html>
<head>
</head>
<body>
  <%= yield %>
</body>
</html>

stripe.rb(初始化程序):

Rails.configuration.stripe = {
  :publishable_key => ENV['PUBLISHABLE_KEY'],
  :secret_key      => ENV['SECRET_KEY']
}

Stripe.api_key = Rails.configuration.stripe[:secret_key]

routes.rb中:

resources :charges

谢谢!对于rails来说还是新手,所以我猜这很简单。

1 个答案:

答案 0 :(得分:2)

如果您向表单添加一些具有不同金额的单选按钮,并从脚本中删除data-amount,那么它将使用表单中的amount值。类似的东西:

<% ["500", "1000", "1500"].each do |amount| %>
  <input type="radio" name="amount" value="<%= amount %>" />
<% end %>

显然,您希望使用标签和可能的默认选项对其进行修改,但这种方法可让您从用户那里获得数量选择。

然后,在您的控制器中,您需要使用传入的金额而不是@amount来创建费用:

charge = Stripe::Charge.create(
  :customer    => customer.id,
  :amount      => params[:amount],
  :description => 'Rails Stripe customer',
  :currency    => 'usd'
)