0
如果我有一個返回數的查詢,即:product.id => 5如何將查詢中的變量傳遞給圖像url,在rails上ruby?
然後我想顯示,響應該變量
圖像鏈接應該是一個圖像:example.com/5(可變).JPG
感謝
如果我有一個返回數的查詢,即:product.id => 5如何將查詢中的變量傳遞給圖像url,在rails上ruby?
然後我想顯示,響應該變量
圖像鏈接應該是一個圖像:example.com/5(可變).JPG
感謝
您可以使用此:
<%= image_tag("example.com/#{product.id}.jpg") if product.present? %>
你可以試試這個
<%= image_tag("example.com/".to_s+ product.id.to_s + ".jpg".to_s) if product.present? %>