$(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オブジェクトを解析する方法です。