인프런 영문 브랜드 로고
인프런 영문 브랜드 로고

Inflearn Community Q&A

성문's profile image
성문

asked

Spring Framework in my hands [Spring 1]

30. Implementing bulletin board details (controlling dynamic tr tags)

idx관련해서 질문이 있어요

Written on

·

227

·

Edited

1

listHtml+="<tr>";

listHtml+="<td>"+obj.idx+"</td>";

 

$.each(data, function(index,obj){ // obj={"idx":5,"title":"게시판"~~ }

여기서 listHtml+="<td>"+obj.idx+"</td>";에있는 obj.idx 하고 function(index,obj)에있는 index 하고 같은거죠?

springMVCjspSpring Security

Answer 1

1

bitcocom님의 프로필 이미지
bitcocom
Instructor

여기에 index는 obj.idx하고는 다릅니다.

반복문의 index역할로 0부터 반복할 때마다 1씩 증가하는 역할입니다.

성문's profile image
성문

asked

Ask a question