我正在嘗試在此行上使用link_to
語法,但沒有任何結果。 我怎麼能在軌道上做紅寶石?如何在rails上添加鏈接到我的圖像?
<%= image_tag post.picture.url if post.picture? %>
我正在嘗試在此行上使用link_to
語法,但沒有任何結果。 我怎麼能在軌道上做紅寶石?如何在rails上添加鏈接到我的圖像?
<%= image_tag post.picture.url if post.picture? %>
使用link_to
do
塊
<%= link_to root_path do %>
<%= image_tag post.picture.url if post.picture? %>
<%= end %>
thnx很多爲我們的幫助 – Shofi