1

我们想发送一封自动生成的电子邮件,其中包含配置文件的完整路径。我们如何做到这一点

<%=link_to('Link', :controller => 'mycontroller', :action => 'show', :id => @mycontroller.id )%> 

link_to 命令仅像这样在邮件中构建链接

mycontroller/show/id

我们需要一个像这样的结构的链接

http://www.server.tld/mycontroller/show/id

大家可以帮帮我们吗?

4

1 回答 1

2

你可以通过 :only_path => false

<%= link_to('Link', :controller => 'mycontroller', :action => 'show', :id => @mycontroller.id, :only_path => false ) %> 
于 2012-05-03T19:14:30.970 回答