使用 Ruby 和 Padrino 为新创建的帖子分配类别



我正在研究我的轻量级Padrino CMS,它非常类似于Wordpress的功能。创建新帖子时,我希望能够将它们分配给许多现有类别。不知何故,我无法让我的表格工作。

我的模型看起来像这样:

发布模型

 class Post < ActiveRecord::Base
   belongs_to :account
   has_many :categorizations
   has_many :categories, :through => :categorizations
   accepts_nested_attributes_for :categories
 end

类别模型

 class Category < ActiveRecord::Base
  has_many :categorizations
  has_many :posts, :through => :categorizations
  belongs_to :category
 end

分类模型

 class Categorization < ActiveRecord::Base
  belongs_to :post
  belongs_to :category
 end

我还为联合表创建了一个迁移

 class CreateCategorizations < ActiveRecord::Migration
  def self.up
   create_table :categorizations do |t|
     t.integer :category_id
     t.integer :post_id
     t.timestamps
   end
  end
  def self.down
   drop_table :categorizations
  end
 end

这是表单的相关部分

  <% fields_for :categories do |c| %>
    <fieldset class='control-group <%= error ? 'has-error' : ''%>'>
      <%= c.label 'Category title', :class => 'control-label' %>
      <div class='controls'>
        <%= c.select(:id, :collection => @categories, :fields => [:title, :id], :include_blank => true, :multiple => true, :class => 'form-control input-xlarge input-with-feedback') %>
       <span class='help-inline'><%= error ? c.error_message_on(:id) : "Select a category if there is a parent category" %></span>
     </div>
   </fieldset>
  <% end %>

我不知道我错过了什么,但关联没有创建。在创建过程中,我没有在控制器中提及类别,但我确实使用现有类别填充了下拉列表。不知何故,我想将它们与新帖子联系起来。

如果有人能为此指出正确的方向,我将不胜感激。我得到的错误是这样的:

NoMethodError at/admin/posts/createundefined 方法 'each' for nil:nilClass文件:collection_association.rb 位置:替换行:383

POST 数据表单包含:

发布

可变authenticity_token

值 "c760c21a5d1f85bfc19e179b37d56f67"

category_active_record_relation {"id"=>["2", "3"]}

发布{"post_name"=>"Test post", "post_type"=>"blogpost", "post_title"=>"Postie", "slug"=>"This is a custom set slug", "post_date"=>"2015-06-30", "post_content"=>"Lorem ipsum dolor sit amet consequtiv", "post_excerpt"=>"Lorem ipsum", "post_status"=>"已发布", "comment_status"=>"已关闭", "comment_count"=>"0"}

save_and_continue"保存并继续"

我已经设法回答了我自己的问题,解决方案相当容易,但是也许有一个更好的,具有更多的魔力。无论如何,使用 CollectionProxy API 文档很明显,我可以在控制器中分配这些类别。

admin/controllers/posts.rb

只需在 if @post.save 之前包含

 params[:category_active_record_relation]['id'].each do |category|
    category = Category.find(category)
    @post.categories << category
end

如果我创建新类别,那么我可以使用@post.categories.build(category)方法。

希望它也能帮助其他人。

相关内容

  • 没有找到相关文章

最新更新