collection render에서 index 표시하기
posts_controller.rb
def index
@posts = Post.all.limit(6)
end
index.html.erb
<%= render partial: "/posts/_post", collection: @posts, as: "post" %>
개별 문장 번호 (index) 를 붙여서 표시하고 싶습니다.
_post.html.erb
<%= post_counter + 1 %>
index를 変数_counter
형식으로 표시할 수 있음이번에는 1부터 시작하고 싶어서 결정했어
post_counter + 1
이것은 Rails가 실행render partial: ..., collection: ...
할 때, Rails가 index에서 생성하고 표시하는partial의 수량을 계산하기 때문에 실현할 수 있습니다참고 자료
Reference
이 문제에 관하여(collection render에서 index 표시하기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://zenn.dev/matsu18/articles/87e8ee279e1cab텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)