在我的本地计算机上,我正在使用elasticsearchrubysinatrastretcher gem。

我收到以下错误:

faraday.rb:99:in `method_missing': undefined method `load_autoloaded_constants' for #<Faraday::Connection:0x9b9f218> (NoMethodError)

截断的 ruby 代码为:
require 'sinatra'
require 'stretcher'

configure do
  ES = Stretcher::Server.new('http://localhost:9200')
end

class Products
  def self.match(text)
    ES.index(:products).search size: 1000, query: {
      multi_match: { query: text, fields: [:title, :description] }
    }
  end
end

get "/" do
  erb :index
end

get "/:search" do
  erb :result, locals: { products: Products.match(params[:search]) }
end

post "/" do
  unless ES.index(:products).exists?
    # create index if not exists
    ES.index(:products).create(mappings: {
      product: {
        properties: {
          title: {type: :string},
          price: {type: :integer},
          description: {type: :string}
        }
      }
    })
  end

感谢所有的帮助。

当我安装担架时,默认情况下会安装faraday_middleware-multi_json 0.0.6和faraday 0.9.0和faraday_middleware 0.9.1。

最佳答案

我认为我们很多人都面临这个问题,但我还没有找到一个可以得到适当说明的地方。

解决“法拉第方法丢失的步骤:load_autoloaded_constants ”错误

1. 转到命令行,然后在gems文件夹下打开担架文件夹。

sudo subl /home/abhinay/.rvm/gems/ruby-2.1.1/gems/stretcher-1.21.1/

2. 打开 lib / stretcher.rb

添加此行: require 'multi_json'#第5行

删除以下行:
require 'faraday_middleware/multi_json'#7行
Faraday.load_autoloaded_constants  # line 8

3. 打开 lib / stretcher / server.rb

更改
builder.response :multi_json, :content_type => /\bjson$/ #line 9


builder.response :json, :content_type => /\bjson$/


builder.request :multi_json

builder.request :json#第11行

4. 打开 spec / lib / stretcher_index_spec.rb
更改#行44
block.call.should == %{curl -XPUT 'http://localhost:9200/foo' -d '#{MultiJson.dump(options)}' '-H Accept: application/json' '-H Content-Type: application/json' '-H User-Agent: Stretcher Ruby Gem #{Stretcher::VERSION}'}


block.call.should == %{curl -XPUT 'http://localhost:9200/foo' -d '#{JSON.dump(options)}' '-H Accept: application/json' '-H Content-Type: application/json' '-H User-Agent: Stretcher Ruby Gem #{Stretcher::VERSION}'}

5. 打开 Stretcher.gemspec 更改#行30
gem.add_dependency('faraday_middleware', '~> 0.9.0')


gem.add_dependency('faraday_middleware', '~> 0.9')

并删除这些行#第33和34行
gem.add_dependency('multi_json', '>= 1.0')
gem.add_dependency('faraday_middleware-multi_json', "~> 0.0.5")

10-08 06:40