我的表格没有绑定到特定的模型,看起来像这样:
<%= form_tag(:controller => 'orders' , :action => 'process_credit_card') do %>
... bunch of fields ...
<% end %>
carmen-rails的country_select
助手看起来像这样
<%= f.country_select :country_code, {priority: %w(US CA)}, prompt: 'Please select a country' %>
但是我没有表单对象f
,我使用助手<%= text_field_tag 'billing_address[phone]' %>
来创建我的表单,有没有办法我仍然可以在这种表单中使用 carmen?
更新:我正在使用 ActiveMerchant 进行支付处理,我可以创建一个表单,form_for
而不是,form_tag
但我不知道如何,任何指针将不胜感激。