我正在創建rails應用程序,我需要從我的Rails控制器中獲取URL的主機名。在rails上獲取URL的主機名
如果我的網址是http://www.example.com/path/0
,那麼我只想提取www.example.com
部分。我怎樣才能做到這一點?我發現request.base_url
,但這返回http://www.example.com
,我不想要。
在javascript中有一個函數,window.location.hostname
。我不知道Ruby on Rails中有一個等價物。
http://stackoverflow.com/questions/8855236/given-a-url我怎麼能得到只是域 – Penguin