我正在创建基本留言板,其中许多评论属于帖子,而帖子只属于一个主题。我的问题是,我不确定如何从Topic
模型的表单中创建新的Post
。我在Post控制器中收到错误:
ActiveRecord::AssociationTypeMismatch in PostsController#create
Topic(#28978980) expected, got String(#16956760)
app/controllers/posts_controller.rb:27:in `new'
app/controllers/posts_controller.rb:27:in `create'
应用程序/控制器/ posts_controller.rb:27:
@post = Post.new(params[:post])
以下是我的模特:
topic.rb:
class Topic < ActiveRecord::Base
has_many :posts, :dependent => :destroy
validates :name, :presence => true,
:length => { :maximum => 32 }
attr_accessible :name
end
post.rb:
class Post < ActiveRecord::Base
belongs_to :topic, :touch => true
has_many :comments, :dependent => :destroy
attr_accessible :name, :title, :content, :topic
accepts_nested_attributes_for :topics, :reject_if => lambda { |a| a[:name].blank? }
end
comment.rb:
class Comment < ActiveRecord::Base
attr_accessible :name, :comment
belongs_to :post, :touch => true
end
我有一张表格:
<%= simple_form_for @post do |f| %>
<h1>Create a Post</h1>
<%= f.input :name %>
<%= f.input :title %>
<%= f.input :content %>
<%= f.input :topic %>
<%= f.button :submit, "Post" %>
<% end %>
它是控制器动作:(发布创建)
def create
@post = Post.new(params[:post]) # line 27
respond_to do |format|
if @post.save
format.html { redirect_to(@post, :notice => 'Post was successfully created.') }
else
format.html { render :action => "new" }
end
end
end
在我发现的所有示例中,标签属于帖子。我正在寻找的是不同的,可能更容易。我希望帖子属于单个标记Topic
。如何通过Post控制器创建主题?有人能指出我正确的方向吗?非常感谢你阅读我的问题,我真的很感激。
我正在使用Rails 3.0.7和Ruby 1.9.2。哦,这是我的架构以防万一:
create_table "comments", :force => true do |t|
t.string "name"
t.text "content"
t.integer "post_id"
t.datetime "created_at"
t.datetime "updated_at"
end
create_table "posts", :force => true do |t|
t.string "name"
t.string "title"
t.text "content"
t.integer "topic_id"
t.datetime "created_at"
t.datetime "updated_at"
end
create_table "topics", :force => true do |t|
t.string "name"
t.datetime "created_at"
t.datetime "updated_at"
end
再次感谢。
答案 0 :(得分:1)
你应该:
accepts_nested_attributes_for :topic
在Post
上,而不是相反。
答案 1 :(得分:0)
@post = Post.new(params[:topic])
修正了错误。