我可以在我的视图 result.html.erb 中访问@result。@result 是一个电影对象。我想通过表单为这个@result 对象创建评论。我将评论框(表单)放在 result.html.erb 中。
我是表单语法的新手。我也对提交后将表单本身指向何处感到困惑。我是否需要为带有创建操作的评论一起创建一个新控制器?
我不确定如何创建此表单以便将其保存到 @result.comments.last
任何帮助将不胜感激!发布的是我的模型和控制器。
class Movie < ActiveRecord::Base
attr_accessible :mpaa_rating, :poster, :runtime, :synopsis, :title, :year
has_many :comments
end
class Comment < ActiveRecord::Base
attr_accessible :critic, :date, :publication, :text, :url
belongs_to :movie
end
class PagesController < ApplicationController
def index
end
def search
session[:search] = params[:q].to_s
redirect_to result_path
end
def result
search_query = search_for_movie(session[:search])
if !search_query.nil? && Movie.find_by_title(search_query[0].name).nil?
save_movie(search_query)
save_reviews(search_query)
end
@result ||= Movie.find_by_title(search_query[0].name)
end
end
结果.html.erb
我曾经使用 simple_form gem,因为我认为它会更好,但我认为我的用例足够简单,只需使用标准的 rails 表单助手即可。如果我错了,请纠正我。这是我到目前为止写的:
<%= simple_form_for @result do |f| %>
<%= f.input :text %>
<%= f.input :critic %>
<%= f.button :submit %>
<% end %>
我收到错误:
undefined method `movie_path' for #<#<Class:0x000001013f4358>:0x00000102d83ad0>