0

导轨 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并只使用正常abutton触发,create因为我有点认为整个表单是多余的,因为用户不需要输入任何内容。我的 javascript 会自动输入值。

请指教。非常感谢。

4

1 回答 1

0

在我的状态控制器中:

def create
  @state = @country.states.build(params[:trip_day])
  @state.position = State.where(:country_id => @country.id).maximum(:position).to_i + 1
  @state.save
end

替换为form

<%= link_to "Add new state", country_states_path(@country), :remote => true, :method => :post %>

我删除了nextState()整个函数form

于 2012-04-19T13:49:47.740 回答