如何让rails3使用数据库信息进行远程链接

时间:2011-09-19 02:27:48

标签: ruby-on-rails ruby ruby-on-rails-3 hyperlink link-to

url来自数据库表,例如www.test.com。

如果该网址存储在数据库中(如“网站”列),如何获得有效链接。

我试过了:

<%= link_to(company.web_site, company.web_site, :remote => true) %>

但我得到http://localhost:3000/company_name.com 我似乎无法摆脱localhost的链接。

1 个答案:

答案 0 :(得分:1)

使用<%= link_to(company.web_site, "http://#{company.web_site}", :remote => true) %>提示“http://”字符串可以解决问题。

或者在您的数据库中首先添加http://https://的网址也是另一种选择。