您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關在springmvc中使用controller如何實現返回值,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。
使用@RequestBody
比如代碼如下:
@RequestMapping(value="/ceshijson",produces="application/json;charset=UTF-8") @ResponseBody public String ceshijson(@RequestBody String channelId) throws IOException{ return channelId;
如果代碼為上面這種情況時,前臺發送json時,應該這樣寫(寫法有很多,能用就行)
function channel(){ //先獲取選中的值 var channelId = $("#channelId option:selected").val(); //來判斷發送的鏈接 if(channelId ==2){ $.ajax({ url:"ceshijson", type:"post", dataType:'json', contentType:'application/json;charset=utf-8', data:JSON.stringify({'channelId':channelId}), success:function(data){ alert(data.channelId); }, error:function(XMLHttpRequest, textStatus, errorThrown){ alert("Error") alert(XMLHttpRequest.status); alert(XMLHttpRequest.readyState); alert(textStatus); } }); } }
這里需要特別注意:上篇也強調過,使用了@RequestBody時,它要求String channelId接收到數據為json字符串。也就是要是data寫成這樣: data:{‘channelId':channelId},就是錯誤的。因為這是json對象形式。
要是你不想使用JSON.stringify()這個函數,那就自己手動字符串拼接:
data:'{"channelId":'+channelId+'}'
這里還要注意channelId是雙引號,不能寫成單引號,因為這是json語法規則。你改成單引號,也就是
**錯誤寫法
data:"{'channelId':"+channelId+"}"
這種形式,雖然可以傳給后臺,但是后臺傳回來的會出現undefined。也就是key必須要用雙引號包圍。
不使用@RequestBody
@RequestMapping(value="/ceshijson",produces="application/json;charset=UTF-8") @ResponseBody public String ceshijson(String channelId) throws IOException{ Map<String,Object> map = new HashMap<String,Object>(); map.put("channelId", channelId); ObjectMapper mapper = new ObjectMapper(); channelId = mapper.writeValueAsString(map); return channelId; }
前臺代碼
$.ajax({ url:"ceshijson", type:"post", dataType:'json', //contentType:'application/json;charset=utf-8', data:"channelId="+channelId, success:function(data){ alert(data); }, error:function(XMLHttpRequest, textStatus, errorThrown){ alert("Error") alert(XMLHttpRequest.status); alert(XMLHttpRequest.readyState); alert(textStatus); } });
這種方式利用ObjectMapper中的writeValueAsString將Java對象轉換為json字符串。
關于在springmvc中使用controller如何實現返回值就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。