0

基本的なフォーラムをセットアップしました。posts#index アクションで、parent_post_id が nil のレコードのみを表示するようにしたいので、返信投稿は表示されません。squeel をインストールしましたが、正しくセットアップされているかどうかわかりません。

  #app/controllers/posts_controller.rb
  def index
    @forum = Forum.find(params[:forum_id])
    @posts = @forum.posts.where{ |post| post.thread == nil }
  end

 #app/models/post.rb
class Post < ActiveRecord::Base
  has_many :replies, :class_name => "Post"
  belongs_to :thread, :class_name => "Post", :foreign_key => "parent_post_id"
end

#config/initializers/squeel.rb
Squeel.configure do |config|
  # To load hash extensions (to allow for AND (&), OR (|), and NOT (-) against
  # hashes of conditions)
  config.load_core_extensions :hash

  # To load symbol extensions (for a subset of the old MetaWhere functionality,
  # via ARel predicate methods on Symbols: :name.matches, etc)
  config.load_core_extensions :symbol

  # To load both hash and symbol extensions
  config.load_core_extensions :hash, :symbol
end
4

1 に答える 1

1

試す

@posts = @forum.posts.where{ "posts.parent_post_id is null" }

見る

http://api.rubyonrails.org/classes/ActiveRecord/Base.htmlの条件セクション

テーブルの名前が「posts」であるため、「post」ではなく「posts」と言います。

追加このタイプの単純なwhere句にはsqueelは必要ありません。「==nil」ではなく、nil値を検索するための適切なSQL構文であるため、「isnull」と言います。

于 2012-04-02T02:22:03.110 に答える