4

我正在尝试将Searchkick添加到我的 Rails 应用程序中。我正在按照入门页面上的确切说明进行操作,但我不断收到以下错误:

Started GET "/airports" for 10.0.2.2 at 2014-05-26 10:20:33 +0000
Processing by AirportsController#index as HTML
Completed 500 Internal Server Error in 26ms

NameError (undefined local variable or method `searchkick' for #<Class:0xb48f3ba8>):
  app/models/airport.rb:2:in `<class:Airport>'
  app/models/airport.rb:1:in `<top (required)>'
  app/controllers/airports_controller.rb:3:in `index'


  Rendered /home/vagrant/.rvm/gems/ruby-2.1.1@global/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
  Rendered /home/vagrant/.rvm/gems/ruby-2.1.1@global/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
  Rendered /home/vagrant/.rvm/gems/ruby-2.1.1@global/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
  Rendered /home/vagrant/.rvm/gems/ruby-2.1.1@global/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (19.8ms)

这是机场模型的样子:

# ./app/models/airport.rb
class Airport < ActiveRecord::Base
    searchkick
end

这就是机场控制器的样子:

# ./app/controllers/airports_controller/rb
class AirportsController < ApplicationController
  def index
    @airports = Airport.all
  end
end

这是什么原因造成的?

4

2 回答 2

6

重新启动服务器。对 Gemfile 进行更改后,必须重新启动服务器。

如果这不起作用,您可以尝试其他方法:

  • 添加gem 'searchkick'到 Gemfile
  • bundle install
于 2014-05-26T10:30:50.587 回答
0

同样在这里。我检查了gem list,searchkick 在那里。

但我searchkick在 Gemfile 中删除并运行了bundle install. searchkick然后再添加bundle install一次,效果很好:)

于 2020-07-09T12:15:28.833 回答