如何在 JQuery 中将 json 响应读取为名称值对
我想在 JQuery 代码中将 json 响应读取为名称和值对。下面是我从 java 代码返回的 JSON 响应示例:
String jsonResponse = "{"name1":"value1", "name2:value2"};
在 JQuery 中,如果我编写 jsonResponse.name1
,我将获得 "value1"
形式的值。这是我的 JQuery 代码
$.ajax({
type: 'POST',
dataType:'json',
url: 'http://localhost:8080/calculate',
data: request,
success: function(responseData) {
alert(responseData.name1);
},
error: function(XMLHttpRequest, textStatus, errorThrown) {
//TODO
}
});
,我想从 jsonResponse 读取 "name1"
而不是在 JQuery 中进行硬编码。就像循环响应获取每个名称和值一样。有什么建议吗?
I want to read json response as name and value pairs in my JQuery code. Here is my sample JSON response that I return from my java code:
String jsonResponse = "{"name1":"value1", "name2:value2"};
in my JQuery, if I write jsonResponse.name1
, I will get value as "value1"
. Here is my JQuery code
$.ajax({
type: 'POST',
dataType:'json',
url: 'http://localhost:8080/calculate',
data: request,
success: function(responseData) {
alert(responseData.name1);
},
error: function(XMLHttpRequest, textStatus, errorThrown) {
//TODO
}
});
Here I want to read "name1"
from jsonResponse instead of hardcoding in JQuery. Something like looping throug the response getting each name and value. Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
需要注意的是,迭代属性的顺序是任意的,不应依赖于此。
It is important to note that the order in which the properties will be iterated is arbitrary and shouldn't be relied upon.
很简单,如下所示:
It's easy like this:
您只需使用
responseData['name1']
即可。简单的。You can just use
responseData['name1']
. Easy.