springMVC接收前端json資料的總結
阿新 • • 發佈:2019-02-07
對於json物件型別(即JsonObject)的資料,springMVC主要有以下幾種方式接收:
1.通過Map接收
@RequestMapping(value = "/getAllStudio" )
public void getAllStudio(@RequestBody Map<String, Integer> map ) {
JSONObject json = new JSONObject();
Integer page = map.get("page") ;// 當前頁
Integer rows = map.get("rows" ) ;// 每頁顯示的數量
}
2.通過將資料封裝在一個vo物件中來接收
@RequestMapping(value = "/addStudio")
public JSONObject addStudio(@RequestBody Studio stu) throws IOException {
JSONObject json = new JSONObject();
if(stu==null){
json.put("result",false);
return json;
}
}
“`
補充:幾種常見的post傳輸資料的方式
在傳輸http請求時,Content-Type 欄位來獲知請求中的訊息主體是用何種方式編碼
1.application/x-www-form-urlencoded
表單提交的方式,其傳輸的資料會被轉換為data1=1&data2=2的形式。
在controller層可通過request.getParametre(“data1”);獲取。
Ajax提交資料時,一般也採用該形式。
2.multipart/form-data
多檔案上傳時指定的格式。
3.application/json
以json格式傳輸資料。