How do I get the host and port in a Rails application

前端 未结 6 1761

In a Rails Model, I want to be able to find out the host and port. For example, if I am in a test environment it would return http://localhost:3000/ and if I

6条回答
  •  盖世英雄少女心
    2020-12-17 08:50

    You can get those values in your controllers (request.host, request.port etc.).

    You'd have to give that to your models via parameters as the request object is only available in the controllers.

提交回复
热议问题