프론트엔드/Vue
객체배열(Object Array)을 백엔드에 전달하는법
짱구를왜말려?
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