我有一个类似这样的导轨设置。
应用程序/服务/TestService.rb
class TestService
def self.doSomething
return 'Hello World!'
end
end
我在控制器中使用这个文件。
require 'TestService'
class IndexController < ApplicationController
def index
@message = TestService.doSomething
end
end
我还在 config 文件夹中的 application.rb 中添加了这个,以便在服务文件夹中自动加载类。
config.autoload_paths += %W(#{config.root}/app/service)
但是该应用程序似乎没有获取对 TestService 类的更新。我该如何解决这个问题,以便在不重新启动服务器的情况下显示 TestService 类中的更改。