0

我想修改 form_for 助手的操作(提交)

<%= form_for(@rating, :as => :post, :url => demo_create_rating_path(@rating)) do |f| %>
  <div class="field">
    <%= f.label :value %><br />
    <%= f.select :value, %w(1 2 3 4 5) %>
  </div>
    <%= f.hidden_field :article_id, :value => @article.id%>
    <%= f.hidden_field :user_id, :value => current_user.id %>
  <div class="field">
    <%= f.label :description %><br />
    <%= f.text_area :description, size: "100x5" %>
  </div>
  <div class="actions">
    <%= f.submit %>
  </div>
<% end %>

这是我的观点,它不起作用。

我想要的是,我可以在提交按钮后重新定向操作,但随后出现此错误:

ActionController::RoutingError (No route matches {:controller=>"demo_ratings", :action=>"create", :article_id=>#<Rating id: nil, value: nil, description: nil, article_id: nil, user_id: nil, created_at: nil, updated_at: nil>}):
  app/views/demo_ratings/_form.html.erb:1:in `_app_views_demo_ratings__form_html_erb__1912848844925280312_70155649546120'
  app/views/demo_ratings/new.html.erb:13:in `_app_views_demo_ratings_new_html_erb__27525029454473720_70155632487040'

我究竟做错了什么?

更新

form_for 助手需要的所有功能:

def new
    @rating = Rating.new
    @article = Article.find(params[:article_id])
  end

  def edit
    @rating = Rating.find(params[:id])
    @article = Article.find(params[:article_id])
  end

  def create
    @rating = Rating.new(params[:rating])
    if @rating.save
      @article= Article.find(params[:article_id])
      puts @article.name
      puts @rating.id
      @rating.article = @article
      puts @rating.article.name
      redirect_to demo_rating_path(@rating, :article_id => @article.id), notice: 'Rating was successfully created.'
    else
      render action: "new"
    end
  end

  def update
    @rating = Rating.find(params[:id])
    if @rating.update_attributes(params[:rating])
      @article = @rating.article
      redirect_to demo_rating_path(@rating), notice: 'Rating was successfully updated.'
    else
      render action: "edit"
    end
  end
4

1 回答 1

2

试试这个:

<%= form_for(@rating, :as => :post, :url => demo_create_rating_path) do |f| %>

url 中的@rating 提供了一个 nil 对象 id,而您还没有 id。

如果要在创建和更新之间共享表单,请使用以下内容:

<% form_for(@rating, :as => :post) do |f| %>

作为参考,请查看 rails 生成的脚手架的 _form.html.erb 的输出。

在您的控制器中,您正在处理之前保存新的/更新的记录。声明if @rating.save应该在之后@rating.article = @article

  def create
    @rating = Rating.new(params[:post])
    @article= Article.find(params[:article_id])
    @rating.article_id = @article.id
    if @rating.save
      redirect_to demo_rating_path(@rating, :article_id => @article.id), notice: 'Rating was successfully created.'
    else
      render action: "new"
    end
  end
于 2012-06-04T13:36:47.943 回答