我正在尝试使用Formtastic创建付款表单,因为我想使用内联错误。我正在使用 ActiveMerchant 来处理帐单。我有以下表格:
<%= semantic_form_for @payment do %>
<%= form.inputs do %>
<%= form.input :email, :label => "Email Address" %>
<%= form.semantic_fields_for :credit_card_attributes do |cc| %>
<%= cc.input :number, :label => "Credit Card Number" %>
<%= cc.input :first_name, :label => "First Name" %>
<%= cc.input :last_name, :label => "Last Name" %>
<%= cc.input :month, :label => "Expiration Month" %>
<%= cc.input :year, :label => "Expiration Year" %>
<%= cc.input :verification_value, :label => "Verification Code" %>
<% end %>
<% end %>
<% end %>
这就是我的Payment
模型中的内容:
class Payment < ActiveRecord::Base
validates_associated :credit_card, :on => :create
def credit_card_attributes=(attrs)
@credit_card = ActiveMerchant::Billing::CreditCard.new(attrs)
end
def credit_card
@credit_card
end
end
当我提交无效的信用卡时,它发现它是无效的,但我没有从 formtastic 得到任何内联错误。
我想这里可能缺少一些简单的东西,我只是不确定是什么。
这是在 Rails 3 上。