Uploads
my folderという名前のフォルダーを作成しましたpublic
。
Uploads
リンクをクリックして、そのフォルダ内のファイルをダウンロードできるようにしたいと思います。
これが私のコードです:
<p>
<b>Certifications</b>
<%= link_to @tutor.tutor_degrees.first.name, # => "AS Level English"
root_path + @tutor.tutor_degrees.first.certification_scan %>
</p>
http://localhost:3000/Screen%20shot%202013-02-04%20at%206.01.11%20PM.png
/uploads/
URL パスにビットがありません。
その文字列を手動で追加すると、壊れた URL が表示されます。
<p>
<b>Certifications</b>
<%= link_to @tutor.tutor_degrees.first.name,
root_path + '/uploads/' + @tutor.tutor_degrees.first.certification_scan %>
</p>
http://uploads/Screen%20shot%202013-02-04%20at%206.01.11%20PM.png