728x90 반응형 백엔드2 프론트 vs 백, 날짜 포맷 변경이 어디서 이뤄져야 하는지 https://softwareengineering.stackexchange.com/questions/436540/is-the-frontend-or-backend-api-responsible-for-formatting-data-in-a-specific-l Is the frontend or backend (API) responsible for formatting data in a specific locale? In our company we had a discussion whether formatting data in a certain locale is the responsibility of the frontend application or of the API that provides data to it. .. 2023. 2. 3. 체크박스 활용하기 (Multiple Selection 수정or삭제) - 2/2 오늘은 저번 글에 이어서 백 쪽의 로직은 어떻게 동작하는지 작성해보려고 한다. 먼저 view 단에서 배열을 통해 보내준 값을 컨트롤러 단에서 어떻게 받는지는 아래와 같다. CONTROLLER //코드 활성화/비활성화 @GetMapping(value = "/disableCode") public String disableCode(@RequestParam("articlesArray") String[] articlesArray) { for(String arr:articlesArray) { Integer codeNo = Integer.valueOf(arr); codeService.disableCode(codeNo); } return "redirect:/selectCode"; } 원리는 향상된 for문으로 arti.. 2022. 10. 6. 이전 1 다음 728x90 반응형