2
$(document).ready(function(){
    $('#id1').click(function(){

        $.ajax({
            type:"GET",
            url:" ggs.erm.servlet.setup5.Page",
            success:function(response){
                var obj = JSON.parse(response);
                alert(obj);
            }
        });
    });
});

我在解析从服务器收到的 JSON 对象时遇到问题。

Connection con = null;
JSONObject json = new JSONObject();
JSONArray jarray = new JSONArray();
try{
    con =ConnectionPool.getConnection();
    String sql = "select country from country_name";
    Statement stmt = con.createStatement();
    ResultSet rs =  stmt.executeQuery(sql);
    while(rs.next())
    {
        jarray.put(rs.getString(1));    
    }
    json.put("country", jarray);
}
catch(Exception e){e.printStackTrace();}
finally{
    try {
        con.close();
    } catch (SQLException e) {
    e.printStackTrace();}
    }
    response.setContentType("application/json");
    try {
        response.getWriter().write(json.toString());
    } catch (IOException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
    }
}

这是生成 json 的代码。
问题是如何解析我在客户端获得的 JSON 对象。

4

1 回答 1

1

不要alert()用来调试。它只是为您提供toString()价值,即[object Object].

相反,将对象记录到控制台。

console.log(response);

// or

var obj = JSON.parse(response);
console.log(obj);

在浏览器中打开开发人员工具以查看对象的内容。

于 2013-01-30T06:46:40.030 回答