我想发送一封电子邮件,其中包含一些链接,以便从我的 s3 存储桶下载。我将文件的网址存储在表中。如何使用link_to助手?
<%= link_to "Download File x", @profile.document %>
因为我认为@profile.document
是一个完全限定的 url,所以你不需要link_to
助手,只需使用:
<a href="<%= @profile.document %>">doc</a>`.
当您具有在config/routes.rb
文件中定义的资源实例(可能如配置文件)时,请使用link_to
。例如:
resources :profile
然后当你使用
<%= link_to 'download', @profile %>
你将拥有
http://test.com/profiles/34234