导轨 3.1。我有以下内容:
// _form.html.erb
<%= form_for ([@country, @state], :remote => true) do |td| %>
<div id= "state_errors" style="display:none"></div>
<%= td.text_field :position, :id => "next_state" %>
<div class="actions">
<%= td.submit %>
</div>
<% end %>
// global.js
function nextState() {
Array.max = function( array ) {
return Math.max.apply( Math, array );
};
var getLastState = $("input.sortable_state_item_position").map(function() {
return $(this).val();
}).get();
getLastState.push("0");
return Array.max(getLastState) + 1;
}
$("input#next_state").val(nextState());
// states_controller.rb
class StatesController < ApplicationController
before_filter :load
def load
@country = Country.find(params[:country_id])
@states = State.all
end
def create
@state = @country.states.build(params[:state])
@state.save
end
...
end
您会注意到我form
为用户创建了一个标签,以便在单击提交按钮时创建记录。但我不确定我是否可以摆脱整个表单form_for
并只使用正常a
或button
触发,create
因为我有点认为整个表单是多余的,因为用户不需要输入任何内容。我的 javascript 会自动输入值。
请指教。非常感谢。