我有一系列图片格式:
[#<BookPhotoUploader:0x00000042103ec0
@file=
#<CarrierWave::SanitizedFile:0x000000421013e0
@content_type=nil,
@file=
"/.../.../.../public/uploads/book/pictures/1/first.jpg",
@original_filename=nil>,
@model=
#<Book:0x00000049fab1f0
id: 1,
...
pictures: ["first.jpg", "second.jpg"]>,
@mounted_as=:pictures,
@storage=
#<CarrierWave::Storage::File:0x00000046803dw0
@uploader=#<BookPhotoUploader:0x00000042103ec0 ...>>,
@versions={}>,
...]
当我显示图片时,它看起来像:
<img id="book_picture" src="/uploads/book/pictures/1/first.jpg" alt="First">
如果我试图获取有关使用jquery显示的图片的信息,如何在数组中找到特定的图片索引?
答案 0 :(得分:0)
我在我的img标签中添加了图片索引属性:
<img id="book_picture" index = 1 src="/uploads/book/pictures/1/first.jpg" alt="First">