게시판 선택 버튼 js 리팩토링
기본적인걸 연습하자는 생각과 유지보수가 편하겠지 라는 생각으로 게시판 종류별 리스트를 불러오게 하는 버튼을 따로 만들었는데 반대였던거 같다 함수하나에 인자여러개를 이용해서 간단하게 만들 수 있었다. function category_list(category_name) { let category = category_name; console.log(category) $.ajax({ type: "GET", url: `http://127.0.0.1:8000/community/category/?category=${category}`, data: {}, headers: { }, success: function (response) { $('#post_list').empty() console.log('성공:', resp..