JSONOject1 [Ajax] JSP에서 Key-Value 형태로 값 받기(JSONObject) Controller JSONObject를 만들고 key와 value값을 넣는다 @RequestMapping("/example/jsonobject.do") public String selectRequiredUserInfo(@ModelAttribute ExampleVO exampleVO, ModelMap model, HttpServletRequest req) throws Exception { JSONObject jsonObj = new JSONObject(); jsonObj.put("color", "white"); jsonObj.put("size", "mini"); jsonObj.put("name", "iphone"); model.put("jsonResult", jsonObj.toString()); retu.. 2023. 2. 14. 이전 1 다음