我做了一些字符串切片。现在我有这样的事情:
@str = '/images00.someother.path_to_.image.jpg' ///my spliced string
当我这样做时:
@new_string = @str[1..@str.length]
我以为我会有这样的字符串:
'images00.someother.path_to_.image.jpg'
但没有... rails 放入图像的 url 路径,所以输出是:
<img src='/images/images00.someother.path_to_.image.jpg'>
当我切片更多时,它看起来像'images/ages01 ...等。
如何删除此默认路径但仅适用于控制器中的此操作?
看法:
<% @array.each do |a| %>
<%= image_tag(a, :id => 'image_' %>