0

ビュー/ユーザー/ショーに次のリンクがあります。

<%= link_to "Photos (#{@user.photos.count})", user_path(@user), id: "photo_link", remote: true %>

上記のリンクをクリックすると、ビュー/ユーザー/ショーで再レンダリングせずに [1..6] を [1..-1] に変更したい:

<section id="photo_galery">
  <% unless @user.photos[0].nil? %>
    <% for photo in @user.photos[1..6] %>
      <%= link_to image_tag(photo.photo.url(:subprofile_thumbnail), id: "subpics"), photo.photo.url(:original), id: "subprofile_photos", class: "fancybox", rel: "gallery01" %>
    <% end %>
  <% end %>
</section>

どうすればこれを達成できますか? ありがとう!

4

1 に答える 1