0

我有这个代码:

<%= link_to 'Whatever', some_path(some_var) %>

此代码位于电子邮件视图中,因此我想为链接指定主机。

我试过了 :

<%= link_to 'Whatever', some_path(some_var, :host => 'http://my.host') %>

这不起作用,我该怎么办?

4

1 回答 1

1

Using the url version of the helper did the trick :

<%= link_to 'Whatever', some_url(some_var, :host => 'http://my.host') %>

Source

于 2013-03-01T15:09:18.163 回答