Amazon S3 - 用于下载 rails 文件的链接



我想发送一封电子邮件,其中包含一些链接,以便从我的 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

相关内容

  • 没有找到相关文章