如何动态更改Stripe在Rails中收取的价格?

时间:2016-05-13 14:00:39

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

我正在尝试将Stripe集成到我的Rails应用程序中。我在他们的网站上按照教程进行操作,并且大部分都在工作。我的一个问题是如何动态更改向客户收取的价格。

现在@amount硬编码为500.如何将@price(从new.html.erb或控制器)传递给'创建'动作?

def new
    @project = Project.find(params[:project_id])
    number_of_testers = @project.testers
    @price = 30 * number_of_testers
end

def create
  # Amount in cents
  # @amount = 500



  customer = Stripe::Customer.create(
    :email => params[:stripeEmail],
    :source  => 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 new_charge_path
end

new.html.erb

<center>
    <%= form_tag charges_path do %>

      <article>
        <% if flash[:error].present? %>
          <div id="error_explanation">
            <p><%= flash[:error] %></p>
          </div>
        <% end %>
        <label class="amount">
          <span>Amount: $<%= @price %></span>
        </label>
      </article>

        <script src="https://checkout.stripe.com/checkout.js" class="stripe-button"
          data-key="<%= Rails.configuration.stripe[:publishable_key] %>"
          data-description="Buy usability testing credits"
          data-amount="<%= @price*100 %>"
          data-locale="auto"></script>
    <% end %>

</center>

2 个答案:

答案 0 :(得分:2)

为什么不使用number_field_tag :amount将金额发送回参数中的控制器create方法?

但是从下面的js脚本看来,您实际上需要将总数发送到条带,这意味着如果您的价格在表单中发生变化,您将需要重新加载js中发送的值,因此您可能还需要您的号码字段的onChange属性。它将调用一个js函数来获取新值并将其发送到条带。

答案 1 :(得分:1)

您可以通过添加隐藏表单字段通过params哈希传递@price,也可以在控制器中的新操作中计算它,然后将其存储在会话中。然后从会话中访问该值。例如:

def new
  @price = 30 * number_of_testers
  session[:price] = @price
end

def create
  @amount = session[:price] 
  ...rest of your code here...
  session.delete(:price)
end 

如果您使用隐藏的表单字段路径而不是使用会话,则只需将控制器中的隐藏字段属性列入白名单,它将作为params散列的一部分与其他表单字段值一起传递。