0

Uploadsmy 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
4

1 に答える 1

0

これを試して...

<%= link_to @tutor.tutor_degrees.first.name, "http://#{request.host}/uploads/#{@tutor.tutor_degrees.first.certification_scan}" %>

働かなければならない :)

于 2013-02-25T21:28:45.910 に答える