Conditional :with using thinking_sphinx
I have the following line in my controller
@articles = Article.search 'pancakes', :with => {:author_id => params[:id]}
and it works fine as long as I have a params[:id] specified, but if I don't, it fails with
searchd error (status: 1): invalid or truncated request
So my question is, is there anyway to have the :with => {:author_id => params[:id]} conditional on their开发者_JS百科 being a valid params[:id]
Thanks
ts_options = {}
ts_options[:with] = {:author_id => params[:id]} if params[:id]
@articles = Article.search 'pancakes', ts_options
精彩评论