使用ajax和jsp处理json请求

时间:2012-09-15 18:10:28

标签: jquery json jsp

我有一个关于使用jquery ajax处理json请求的查询,

使用JSON.stringify()处理javascript对象后,我的json字符串如下所示:

  {"user1":{"hardwork":3,"cooperative":4,"supportive":3,"knowledge":3},
   "user2":{"hardwork":5,"cooperative":5,"supportive":3,"knowledge":3}}

让我们说user1user2是用户名,对于每个用户,我们都有categories和每个类别的值。 根据需要,我需要将此页面发布到jsp页面。另外,我需要在keys页面的values字符串中同时jsonJSP

怎么做?

哪个json-java库适合?

如何遍历jsp页面中的java/json对象中的键和值(就像我们在for in loop中使用javascript一样)?

由于

3 个答案:

答案 0 :(得分:0)

$.getJSON('/your/script.jsp', function(data) {
    $.each(data, function(index) {
        var users = data[index]
        $.each(users,function(i){
            console.log(users.hardwork);
             //other properties
        });
    });
});

答案 1 :(得分:0)

您可以找到这个开源的json java库,查看this

答案 2 :(得分:0)

您将了解更好的Java JSON库here

随着那些做你想做的事