1
我試圖設置一個formtastic形式的多個提交操作,跟隨Railscast#38。 Formtastic中的這個相當於什麼?與formtastic多個提交操作
<%= submit_tag 'Create' %>
<%= submit_tag 'Preview', :name => 'preview_button' %>
This post給了我希望,但它看起來像commit_button
在2.1.0過時,我似乎無法找出新的語法。
這是我的代碼,它是值得的。我想每一個提交按鈕轉到同一個控制器,在這裏我將以不同的方式處理它們:
# Use prepaid credits to checkout
<%= f.action :submit, :as => :button, :label => "Order Critique (1 credit will be spent)", :button_html => { :class => "btn btn-primary", :disable_with => 'Processing...' } %>
# Use credit card to checkout
<%= f.action :submit, :as => :button, :label => "Order Critique ($10)", :button_html => { :class => "btn btn-primary", :disable_with => 'Processing...' } %>