- xml - AJAX/Jquery XML 解析
- 具有多重继承的 XML 模式
- .net - 枚举序列化 Json 与 XML
- XML 简单类型、简单内容、复杂类型、复杂内容
我将 searchlogic 放在我的 gemfile 中......现在我的 rails 服务器无法启动 :(
这是错误信息
gems/ruby-1.8.7-p299/gems/activesupport-3.0.0/lib/active_support/core_ext/module/aliasing.rb:31:in `alias_method': undefined method `merge_joins' for class `Class' (NameError)
from /Users/omiohoro/.rvm/gems/ruby-1.8.7-p299/gems/activesupport-3.0.0/lib/active_support/core_ext/module/aliasing.rb:31:in `alias_method_chain'
from /Users/omiohoro/.rvm/gems/ruby-1.8.7-p299/gems/searchlogic-2.4.27/lib/searchlogic/active_record/consistency.rb:8:in `included'
from /Users/omiohoro/.rvm/gems/ruby-1.8.7-p299/gems/searchlogic-2.4.27/lib/searchlogic/active_record/consistency.rb:7:in `class_eval'
from /Users/omiohoro/.rvm/gems/ruby-1.8.7-p299/gems/searchlogic-2.4.27/lib/searchlogic/active_record/consistency.rb:7:in `included'
from /Users/omiohoro/.rvm/gems/ruby-1.8.7-p299/gems/searchlogic-2.4.27/lib/searchlogic.rb:34:in `include'
from /Users/omiohoro/.rvm/gems/ruby-1.8.7-p299/gems/searchlogic-2.4.27/lib/searchlogic.rb:34
from /Users/omiohoro/.rvm/gems/ruby-1.8.7-p299/gems/bundler-1.0.0/lib/bundler/runtime.rb:64:in `require'
from /Users/omiohoro/.rvm/gems/ruby-1.8.7-p299/gems/bundler-1.0.0/lib/bundler/runtime.rb:64:in `require'
from /Users/omiohoro/.rvm/gems/ruby-1.8.7-p299/gems/bundler-1.0.0/lib/bundler/runtime.rb:62:in `each'
from /Users/omiohoro/.rvm/gems/ruby-1.8.7-p299/gems/bundler-1.0.0/lib/bundler/runtime.rb:62:in `require'
from /Users/omiohoro/.rvm/gems/ruby-1.8.7-p299/gems/bundler-1.0.0/lib/bundler/runtime.rb:51:in `each'
from /Users/omiohoro/.rvm/gems/ruby-1.8.7-p299/gems/bundler-1.0.0/lib/bundler/runtime.rb:51:in `require'
from /Users/omiohoro/.rvm/gems/ruby-1.8.7-p299/gems/bundler-1.0.0/lib/bundler.rb:112:in `require'
from /Users/omiohoro/glowing-rain-75/config/application.rb:7
from /Users/omiohoro/.rvm/gems/ruby-1.8.7-p299/gems/railties-3.0.0/lib/rails/commands.rb:28:in `require'
from /Users/omiohoro/.rvm/gems/ruby-1.8.7-p299/gems/railties-3.0.0/lib/rails/commands.rb:28
from /Users/omiohoro/.rvm/gems/ruby-1.8.7-p299/gems/railties-3.0.0/lib/rails/commands.rb:27:in `tap'
from /Users/omiohoro/.rvm/gems/ruby-1.8.7-p299/gems/railties-3.0.0/lib/rails/commands.rb:27
from script/rails:6:in `require'
from script/rails:6
我该如何解决这个问题?提前致谢干杯塔巴卢加
最佳答案
有 railsdog's searchlogic fork在支持 Rails 3 的 github 上。
您可以像这样将它添加到您的 Gemfile 中:
gem 'rd_searchlogic', :require => 'searchlogic', :git => 'git://github.com/railsdog/searchlogic.git'
关于ruby-on-rails - 我如何让 searchlogic 与 Rails 3 一起工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3957859/
我正在寻找 acts_as_solr 或 thinkingsphinx 的替代品,以便在我的 Rails 应用程序中进行全文搜索。遇到了搜索逻辑。它支持索引吗?我计划在 heroku 上托管我的应用程
看来 Searchlogic不适用于 Rails 3。(除其他外,Ryan Bates 在他的 RailsCasts 中提到过,Google Group 中的最后一个问题来自 2010 年。) 所以我
我在 2.3.5 版和 Rails 2.3.4 中使用了 'binarylogic-searchlogic' gem。 我想要做的是在模型上搜索多个属性的指定值。我通过将所有东西链接在一起来实现这一点
这有效: 基线 Controller @search = Baseline.search(params[:search]) @baselines = @search.paginate :page =>
示例表格
您如何在模型的多个字段中进行有效搜索? # user.rb model def self.search(search, page) paginate :per_page => 20, :page
如果不是,我的选择是什么? 最佳答案 Metawhere - http://metautonomo.us/projects/metawhere/ 看起来是一个很有前途的替代方案。 ps:通过 ruby
过去,我在 Rails 2.3 中使用了 thinking_sphinx,我发现它没有问题。是否值得考虑新的搜索选项? searchlogic 和 thinking_sphinx 之间有什么区别? R
编辑看起来我已经弄清楚了 - 我必须在从 Searchlogic 调用all之后调用分页。 我正在尝试使用这两个工具来使用户能够搜索联系人并返回分页列表(如果不输入任何搜索条件,则返回整个分页列表)。
我将 searchlogic 放在我的 gemfile 中......现在我的 rails 服务器无法启动 :( 这是错误信息 gems/ruby-1.8.7-p299/gems/activesupp
例如我有索引操作: def index @search = Product.search(params[:search]) @products = @search.all end 实例
我是一名优秀的程序员,十分优秀!