-
객체배열(Object Array)을 백엔드에 전달하는법프론트엔드/Vue 2022. 5. 28. 16:06반응형SMALL
# What?
- 객체배열을 백엔드에 그냥 전달하면 정상적인 값으로 전달이 안됨
# How?
@ front
this.form.options = JSON.stringify(this.form.options); this.form.get("/orders/create");
@ backend
json_decode($request->options, true)
LIST'프론트엔드 > Vue' 카테고리의 다른 글
img lazyload 만들기(이미지 지연로딩) (0) 2022.10.23 이미지 리사이즈 input (image input 리사이즈) (0) 2022.10.15 vue + 카카오지도 babel-polyfill 오류 대응법(카카오 지도 가져오기 안될 때) (0) 2022.09.11 여러 파일 | 이미지 input 만들기 (여러 이미지) (0) 2022.08.31 날짜 input(datepicker) (0) 2022.01.14