2012-09-28 2 views
0

현재 게시물의 댓글 만 검색하는 방법을 모르겠습니다. 내가Sunspot Solr. 게시물의 댓글이 어떻게 표시되는지

searchable :auto_index => true do 
    text :description 
end 

같은 주석을 사용하지만, 내가

@search = @post.comments.search 

같은 후 주석에서 검색 할 그리고 난 DB에서 모든 의견을 얻을뿐만 아니라 현재 포스트에서. 왜? ((

답변

0

참조 검색에 대한 매개 변수가 없기 때문에 그것은 모든 코멘트를 반환.

searchable :auto_index => true do 
    text :description 
    integer :post_id 
end 

과에서가 컨트롤러

Comment.search do 
    fulltext params[:query]   if params[:query].present? 
    with :post_id, params[:post_id] if params[:post_id].present? 
end 
관련 문제