url来自数据库表,例如www.test.com。
如果该网址存储在数据库中(如“网站”列),如何获得有效链接。
我试过了:
<%= link_to(company.web_site, company.web_site, :remote => true) %>
但我得到http://localhost:3000/company_name.com 我似乎无法摆脱localhost的链接。
答案 0 :(得分:1)
使用<%= link_to(company.web_site, "http://#{company.web_site}", :remote => true) %>
提示“http://”字符串可以解决问题。
或者在您的数据库中首先添加http://
或https://
的网址也是另一种选择。