현재 하고있는 것
날 겁나게 애먹였지만 잘못된건 foreach도 아니고 replace도 아니고, 파일 형식도 아니었다.
내가 trElement를 가져올때 innerHTML을 했어야했는데 그냥 통째로 가져오니까 replace가 못 읽는문제였음.
const trElement = document.querySelector('#showList_row').innerHTML;
let template = document.querySelector('#showList_row');
const Nodes = data.list;
//교수님 코드
Nodes.forEach(v=>{
template += trElement.replace('{idx}',v.idx)
.replace('{subject}',v.subject)
.replace('{nickname}',v.nickname)
.replace('{date}',v.date)
.replace('{hit}',v.hit)
})
'실천하기 > 프로젝트' 카테고리의 다른 글
[220329] 연극 예매사이트 팀플 기록) 10. CR구현 (0) | 2022.03.29 |
---|---|
[220328] 연극 예매사이트 팀플 기록) 9. 깃헙이슈, CRUD 구현 (0) | 2022.03.28 |
[220326] 연극 예매사이트 팀플 기록) 8. 깨지는 css 수정, git commit message 수정,삭제, git 원상복구하기 (0) | 2022.03.27 |
[220325] 연극 예매사이트 팀플 기록) 7. 통일성 있는 디자인을 위해 수정하기 (0) | 2022.03.25 |
[220324] 연극 예매사이트 팀플 기록) 6. 스키마 수정, 캘린더 구현, 파일 업로드기능 추가 (0) | 2022.03.24 |
댓글