我的工作延迟,工作得非常好。我想知道这是哪个环境。是生产,开发还是分期。请检查代码。 ENV [“RAILS_ENV”]是nuil?
class SendMessageJob < Struct.new(:message_id)
def perform
p ENV["RAILS_ENV"] // printing nil :(
p "hello world"
end
end
我试过包括
require "#{File.dirname(__FILE__)}/../config/environment.rb"
顶部的文件仍然没有..
答案 0 :(得分:2)
您可以尝试RAILS_ENV
(在Rails中定义的常量)或较新的Rails.env
(此包装器)。