0

我想发送一封电子邮件,其中包含一些从我的 s3 存储桶下载的链接。我将文件的 url 存储在表中。如何使用 link_to 助手?

<%= link_to "Download File x", @profile.document %>
4

1 回答 1

0

因为我认为这@profile.document是一个完整的 url,你不需要link_to帮助,只需使用:

<a href="<%= @profile.document %>">doc</a>`.

link_to当您有在文件中定义的资源实例(可能像 Profile)时使用config/routes.rb。例如:

resources :profile

那么当你使用

<%= link_to 'download', @profile %>

你将会有

http://test.com/profiles/34234
于 2013-01-31T17:33:36.877 回答