无法在 Haml 中呈现数据属性,Rails

Trouble rendering data attributes in Haml, Rails

我一直在尝试将以下内容从 html.erb 转换为 html.haml,但渲染效果并非 100% 正确。具体来说,我想知道如何在 Haml 的脚本标签中正确编写代码。

html.erb:

<%= form_tag charges_path do %>
  <h4>So what comes with being a Blocipedia premium member? </h4>
  <p>The ability to create your very OWN private wikis of course!</p>
  <script class='stripe-button' src="https://checkout.stripe.com/checkout.js" data-key="<%= @stripe_btn_data[:key] %>" data-amount=<%= @stripe_btn_data[:amount] %> data-description="<%= @stripe_btn_data[:description] %>" ></script>
<% end %>

html.haml:

= form_tag charges_path do
  %h4 So what comes with being a Blocipedia premium member?
  %p The ability to create your very OWN private wikis of course!
  %script.stripe-button{"data-key" => @stripe_btn_data[:key], :src => "https://checkout.stripe.com/checkout.js", "data_amount" => @stripe_btn_data[:amount], "data_description" => @stripe_btn_data[:description]}

在我尝试用 Haml 重写我的代码之前,我的原始 html.erb 文件呈现如下。

在 Haml 之前(我的页面应该呈现的方式):

然而在尝试更改为 Haml 之后,我并没有 100% 成功地让页面以完全相同的方式呈现

Haml 之后(注意数据量($15.00)和数据描述(BigMoney 会员资格)未显示)

正确呈现此页面的正确 Haml 语法是什么?

更新

我正在尝试从我的 charges_controller.rb

中获取数据量和描述

charges_controller.rb:

class ChargesController < ApplicationController
  def create
    # Creates a Stripe Customer object, for associating with the charge
    customer = Stripe::Customer.create(
      email: current_user.email,
      card: params[:stripeToken]
    )

    # Where the real magic happens
    charge = Stripe::Charge.create(
      customer: customer.id, # Note -- this is NOT the user_id in your app
      amount: Amount.default,
      description: "BigMoney Membership - #{current_user.email}",
      currency: 'usd'
    )

    flash[:notice] = "Thanks for all the money, #{current_user.email}!  You now have a premium Blocipedia account!  Feel free to pay me again."

    current_user.update_attribute(:role, "premium")

    redirect_to root_path # Or wherever

    # Stripe will send back CardErrors, with friendly messages when something goes wrong.
    # This rescue block catches and displays those errors.
  rescue Stripe::CardError => e
    flash[:error] = e.message
    redirect_to new_charge_path
  end

  def new
    @stripe_btn_data = {
      key: "#{ Rails.configuration.stripe[:publishable_key] }",
      description: "BigMoney Membership - #{current_user.name}",
      amount: Amount.default
    }
  end

  def destroy
    if current_user.update_attributes(role: "standard")
      flash[:notice] = "You now have a standard Blocipedia account.  Feel free to upgrade back to premium at anytime!"
      redirect_to root_path
    else
      flash[:error] = "There was an error downgrading your account.  Please contact technical support."
      redirect_to edit_user_registration_path
    end
  end
end

amount.rb:

class Amount
  def self.default
    15_00
  end
end

使用 HAML

实现与 ERB 相同的HTML输出
= form_tag charges_path do
  %h4 So what comes with being a Blocipedia premium member?
  %p The ability to create your very OWN private wikis of course!
  %script.stripe-button{data: {key: @stripe_btn_data[:key], amount: @stripe_btn_data[:amount], description: @stripe_btn_data[:description]}, src: "https://checkout.stripe.com/checkout.js"}