gpt4 book ai didi

java - Spring Mvc 中 jQuery Ajax 中的 JSON 响应

转载 作者:行者123 更新时间:2023-12-01 10:50:25 25 4
gpt4 key购买 nike

如何在 Spring Mvc 中的 jQuery Ajax 中获取 JSON 响应?这是我的 ajax 代码

 $.ajax({
type: 'POST',
url: "fetch",
dataType: 'json',
data: {clientidedit:clientidedit},
success: function(data) {

},
error: function(jqXHR, textStatus, errorThrown) {
alert("error");
}

});

这是我的服务。这将返回一个字符串。我如何获取ajax响应中的每个数据?

if (StringUtils.isEmpty(clientId)) {
resObj.put("clientId", org.json.JSONObject.NULL);
} else {
resObj.put("clientId", clientId);
}

if (StringUtils.isEmpty(clientName)) {
resObj.put("clientName", org.json.JSONObject.NULL);
} else {
resObj.put("clientName", clientName);
}
array.put(resObj);
}

try {
resObjForTable.put("aaData", array);
} catch (JSONException ex) {
Logger.getLogger(SabbServiceImpl.class.getName()).log(Level.SEVERE, null, ex);
}
return resObjForTable.toString();

提前致谢......

最佳答案

你的 Controller 类方法应该是这样的

    @RequestMapping(value = "fetch")
@ResponseBody
public Object methodName() {

// Your implementation.

return resObjForTable.toString();
}

关于java - Spring Mvc 中 jQuery Ajax 中的 JSON 响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33952667/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com