Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想发送一封电子邮件,其中包含一些从我的 s3 存储桶下载的链接。我将文件的 url 存储在表中。如何使用 link_to 助手?
<%= link_to "Download File x", @profile.document %>
因为我认为这@profile.document是一个完整的 url,你不需要link_to帮助,只需使用:
@profile.document
link_to
<a href="<%= @profile.document %>">doc</a>`.
link_to当您有在文件中定义的资源实例(可能像 Profile)时使用config/routes.rb。例如:
config/routes.rb
resources :profile
那么当你使用
<%= link_to 'download', @profile %>
你将会有
http://test.com/profiles/34234