Rails: Missing host to link to! Please provide :host parameter or set default_url_options[:host]

前端 未结 15 2651
深忆病人
深忆病人 2020-11-27 10:34

I have been googling for about 90 minutes now and still don\'t have an answer to this. Where do I set default_url_options? I\'ve already set it for conf

15条回答
  •  难免孤独
    2020-11-27 11:14

    You can set default url options in the Application Controller:

    class ApplicationController < ActionController::Base
      def default_url_options
        {:locale => I18n.locale}
      end
    end
    

    http://guides.rubyonrails.org/action_controller_overview.html#default_url_options

提交回复
热议问题