我正在使用 Extjs 框架。首先,我创建一个 servlet 来从数据库中获取数据。从数据库中获取数据后,我将其存储在一个列表中。然后我将列表转换为 json 数组。现在我想使用 Extjs ajax 调用将这些数据放入 jsp 页面。我怎样才能做到这一点?我的小服务程序是
String str = "select * from employee";
rs = stmt.executeQuery(str);
List<Employee> list1 = new ArrayList<Employee>();
while(rs.next){
emp = new Employee();
emp.setEmpId(rs.getInt(1));
emp.setFirstName(rs.getString(2));
list1.add(emp);
}
Gson gson = new Gson();
JsonElement element = gson.toJsonTree(list1, new TypeToken<List<Employee>>() {
}.getType());
JsonArray jsonArray = element.getAsJsonArray();
response.setContentType("application/json");
response.getWriter().print(jsonArray);
现在我通过 Extjs 点击按钮在 jsp 文件中调用这个 servlet。我怎样才能进行ajax调用?我正在使用这个..
Ext.onReady(function () {
Ext.create('Ext.Button', {
text: 'click',
handler: function () {
Ext.Ajax.request({
url: 'TestEmployee',
success: function(result, request) {
/////what shold I do here so that I get data here and display in jsp???
},
failure: function(response, opts) {
Ext.MessageBox.alert('Failed', result.responseText);
}
});
},
renderTo: Ext.getBody()
});
});