default_url_options and rails 3

后端 未结 5 571
难免孤独
难免孤独 2020-11-29 05:50

As ActionController::Base#default_url_options is deprecated, I wonder how to set default url options in rails3. The default url options are not static but dependent of the c

5条回答
  •  攒了一身酷
    2020-11-29 06:39

    Rails.application.routes.default_url_options[:host]= 'localhost:3000'

    In the developemnt.rb / test.rb, can be more concise as following:

    Rails.application.configure do
      # ... other config ...
    
      routes.default_url_options[:host] = 'localhost:3000'
    end
    

提交回复
热议问题