1

我有两个资源:主题和帖子。我试图弄清楚如何通过 Post 控制器创建主题。模型如下所示:

class Topic < ActiveRecord::Base
  has_many :posts, :dependent => :destroy
  validates :name, :presence => true,
                   :length => { :maximum => 32 }
  attr_accessible  :name
end

class Post < ActiveRecord::Base
  belongs_to :topic,    :touch => true
  has_many   :comments, :dependent => :destroy
  accepts_nested_attributes_for :topic
  attr_accessible :name, :title, :content, :topic
end

帖子/_form.html.erb:

<%= simple_form_for @post do |f| %>
  <h1>Create a Post</h1>
  <%= f.input :name, :label => false, :placeholder => "Name" %>
  <%= f.input :title, :label => false, :placeholder => "Title" %>
  <%= f.input :content, :label => false, :placeholder => "Content" %>
  <%= f.input :topic, :label => false, :placeholder => "Topic" %>  
  <%= f.button :submit, "Post" %>  
<% end %>

post_controller.rb#create:

def create
  @post = Post.new(params[:topic])
  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

使用 posts/_form.html.erb 我可以创建帖子,但不会随之创建相关主题。谁能告诉我为什么我会出现这种行为以及如何纠正它?我正在使用 Ruby 1.9.2、Rails 3.0.7 和 simple_form gem。

4

3 回答 3

3

Railscasts 有几个关于这个问题的情节。第16集(需要订阅)

源代码: https ://github.com/railscasts/016-virtual-attributes-revised

而这一集 http://railscasts.com/episodes/57-create-model-through-text-field

意见/产品/_form.rhtml

<p>
<label for="product_category_id">Category:</label><br />
<%= f.collection_select :category_id, Category.find(:all), :id, :name, :prompt => "Select a Category" %>
or create one:
<%= f.text_field :new_category_name %>
</p>

模型/product.rb

belongs_to :category
attr_accessor :new_category_name
before_save :create_category_from_name

def create_category_from_name
create_category(:name => new_category_name) unless new_category_name.blank?
end

我认为 Ryan 的类别解决方案比 @nathanvda 的选项 1 更优雅。因为它在模型而不是控制器中处理数据。如果你需要在不同的控制器/动作中做同样的工作,你会看到好处。

于 2012-11-05T03:23:53.013 回答
2

根据您想要做什么,我可以看到两个选项。

选项 1:使用文本框创建或查找现有主题(如您所见)。在您的控制器中,您将编写如下内容:

def create
  topic_name = params[:post].delete(:topic)
  @topic = Topic.find_or_create_by_name(topic_name)
  @post = Post.new(params[:post])
  @post.topic = @topic
  if @post.save
    format.html { redirect_to(@post, :notice => 'Post was successfully created.') }
  else
    format.html { render :action => "new" }
  end
end

那是快速而肮脏的方式。对于您键入的每个主题,它都会topic尝试按名称查找该主题,或者创建它并分配它。但是,这很容易出错。如果您的主题集有限,还有一种更简单的方法。

选项 2:使用选择框,可用主题列表。在你看来写:

<%= simple_form_for @post do |f| %>
  <h1>Create a Post</h1>
  <%= f.input :name, :label => false, :placeholder => "Name" %>
  <%= f.input :title, :label => false, :placeholder => "Title" %>
  <%= f.input :content, :label => false, :placeholder => "Content" %>
  <%= f.association :topic %>  
  <%= f.button :submit, "Post" %>  
<% end %>

这将呈现一个带有可能主题的选择框。在您的控制器中,您只需编写:

def create
  @post = Post.new(params[:post])
  if @post.save
    format.html { redirect_to(@post, :notice => 'Post was successfully created.') }
  else
    format.html { render :action => "new" }
  end
end

虽然第二个选项非常简单,但动态添加主题并不容易。您可以在两者之间做一些事情,使用自动完成字段,这将允许查找值(如果存在),或者添加新值(如果它们不存在)。

希望这可以帮助。

于 2011-05-01T14:38:36.043 回答
1

您是否在服务器日志中收到批量分配错误?您可能需要将 :topic_attributes 添加到您的 attr_accessible 列表中。

于 2011-05-01T03:46:07.010 回答