1

我正在使用 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()

    });
    });
4

2 回答 2

0

Try

var array = Ext.decode(result.responseText);
于 2013-10-31T14:01:47.943 回答
0

你用的是什么版本的 ExtJs?

我建议您使用 Ext 4,以便您可以使用 MVC 模式。

我会尝试在网格中呈现员工列表,因此我会通过 store.load() 执行 ajax 请求,其中商店将绑定到网格。

这是 Extjs 4 的基础教程

http://docs.sencha.com/extjs/4.2.2/#!/guide/getting_started

http://docs.sencha.com/extjs/4.2.2/#/guide/application_architecture

此致。

于 2013-11-03T19:16:48.683 回答