Rails 3 路线在表单编辑上发布



基本上发生的事情是我可以创建一个新项目,并将其保存到数据库中的表中。 但是当我去编辑项目时,表单打开,我进行更改,然后当我去提交时,它会将我带到与编辑页面相同的 URL 并给我路由错误 没有路由匹配"/support/14/edit",尽管如果您在地址栏中输入它,它会打开编辑表单很好,但没有保存我的任何更改。所以这是我的代码。

路线.rb

resources :support

support_controller.rb

def new
  @support_item = Support.new
  respond_to do |format|
    format.html # new.html.erb
    format.xml  { render :xml => @support_item }
  end
end
# GET /support/1/edit
def edit
  @support_item = Support.find(params[:id])
end
# POST /support
# POST /support.xml
def create
  @support_item = Support.new(params[:support_item])
  respond_to do |format|
    if @support_item.save
      format.html { redirect_to("/support", :notice => 'Question was successfully created.') }
    else
      format.html { render :action => "new" }
    end
  end
end
# PUT /support/1
# PUT /support/1.xml
def update
  @support_item = Support.find(params[:id])
  respond_to do |format|
    if @support_item.update_attributes(params[:support_item])
      format.html { redirect_to("/", :notice => 'Question was successfully updated.') }
      format.xml  { head :ok }
    else
      format.html { render :action => "edit" }
      format.xml  { render :xml => @support_item.errors, :status => :unprocessable_entity }
    end
  end
end

支持.rb

class Support < ActiveRecord::Base
  belongs_to :role
  scope :admin_available, order("role_id ASC") do
      Support.all
  end
  def self.available(user)
    questions =   where(:role_id => 1)
    questions +=  where(:role_id => user.roles)
    questions
  end
end

_form.html.erb

  <% if @support_item.errors.any? %>
    <div id="error_explanation">
      <h2><%= pluralize(@support_item.errors.count, "error") %> prohibited this question from being saved:</h2>
      <ul>
      <% @support_item.errors.full_messages.each do |msg| %>
        <li><%= msg %></li>
      <% end %>
      </ul>
    </div>
  <% end %>
  <div class="field">
    <%= f.label "Support item for:" %><br />
    <%= f.collection_select :role_id, Role.find_by_max(5), :id, :name, {:default => 'everyone'} %>
  </div>
  <div class="field">
    <%= f.label :question %><br />
    <%= f.text_field :question, :class => 'genForm_question'%>
  </div>
  <div class="field">
    <%= f.label :answer %><br />
    <%= f.text_area :answer, :class => 'genForm_textarea' %>
  </div>
  <div class="field">
    <%= f.label :url %><br />
    <%= f.text_field :url, :class => 'genForm_question' %>
  </div>
  <div class="actions">
    <%= f.submit %>
  </div>

新.html.erb

<h1>New Support Item</h1>
<% form_for @support_item, :url => { :action => "create" }, :html => { :method => :post } do |f| %>
    <%= render 'form', :f => f %>
<% end %>

编辑.html.erb

<h1>Editing Support Item</h1>
<% form_for @support_item, :url => { :action => "edit" }, :html => { :method => :post } do |f| %>
        <%= render 'form', :f => f %>
<% end %>

我相信这就是所有相关的代码。

<h1>Editing Support Item</h1>
<% form_for @support_item do |f| %>
        <%= render 'form', :f => f %>
<% end %>

您正在覆盖该 URL。如果您使用标准休息做所有事情,它应该能够像这样自动生成。如果这不起作用,只需知道您不想提交到/support_items/1/edit,您想提交到/support_items/1。

相关内容

  • 没有找到相关文章

最新更新