5

我知道您通常应该在 rails 中使用 new/create 和 edit/update 之间的链接,但我有一个需要其他东西的情况。无论如何我可以实现同样的连接吗?

我有一个模型表单,我希望它发布数据(类似于新视图发布到创建操作的方式)。

这是我的表格

<div id="new-job">  
  <%= form_for(@job) do |f| %>
    <% if @job.errors.any? %>
      <div id="error_explanation">
        <h2><%= pluralize(@job.errors.count, "error") %> prohibited this job from being saved:</h2>

        <ul>
        <% @job.errors.full_messages.each do |msg| %>
          <li><%= msg %></li>
        <% end %>
        </ul>
      </div>
    <% end %>

    <div class="field">
      <%= f.label :name %><br />
      <%= f.text_field :name %>
    </div>
    <div class="field">
      <%= f.label :location %><br />
      <%= f.text_field :location %>
    </div>
    <div class="field">
      <%= f.label :description %><br />
      <%= f.text_area :description %>
    </div>
    <div class="actions">
      <%= f.submit "create job", id: "submit-job", class: "button small radius" %>
      <%= link_to "go back", jobs_path, class: "button small radius secondary" %>
      <div id="new-job-errors"> </div>
    </div>
  <% end %>
</div>
4

1 回答 1

8

使用该:url选项。

= form_for @job, :url => company_path, :html => { :method => :post/:put }
于 2013-06-09T00:54:16.603 回答