rails5.2.3
ruby2.5.1
如下两行代码,第一行不能解析 redis.yml 中配置的<%= ENV["REDIS_PASSWORD"] %> 不是说 YMAL 中本身就执行了解析 erb 模板的操作了吗?
read_config = YAML.load_file('config/redis.yml') #不能解析
read_config = YAML::load(ERB.new(IO.read('config/redis.yml')).result) #引入erb之后能解析了