일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
- Push
- Maven
- Next.js
- NextJS
- mybatis
- javascript
- rocky9
- jquery
- centos7
- git
- nodejs
- docker
- pwa
- ajax
- config
- PM2
- spring3
- FCM
- Eclipse
- MSsql
- SpringBoot
- yona
- security
- popup
- MariaDB
- jenkins
- Java
- Tomcat
- mysql
- node.js
- Today
- Total
목록JsonData (2)
ふたりで
# 먼저 라이브러리 설정. org.codehaus.jackson jackson-mapper-asl 1.9.13 # 사용자 화면에서 아래와 같이 jsondata를 생성해 ajax로 서버에 전송한다. var menuArrayObj = new Array();//전송용 파라메터 객체$('.js_check').each(function(){//체크여부에 따른 값 설정 if($(this).is(':checked') == true){ var menuInfo = new Object(); menuInfo.pmb_martcode=martCode; menuInfo.pmb_deviceid=deviceid; menuInfo.pmb_qrcode=qrcode..
Array에 담긴 JsonData를 controller에서 VO model로 바로 받을 때 참고. 1. jsondata 생성 $(document).on('click','.js_authChangePopup',function(e){ //공통변수 클릭한 요소의 data에서 항목별 값 추출 var ordernum = parseInt($(this).data('ordernum')); var arrayObj = new Array();//전송용 array 객체 선언 $('.js_check').each(function(){//체크된 요소 루프돌면서 data 값 추출 if($(this).is(':checked') == true){ ..