新手初学的时候可能有个疑问:如何在数据表格中不通过按钮事件直接显示后台列表信息?我在学习的时候也碰到了这个问题,纠结了很长时间,现在将代码贴出来给初学者以提示:
大家都知道EasyUi都是用json进行前后台数据交互的, datagrid有一个属性: url,可以直接到这个url中进行查询等后台操作,最后return一个json对象,这时datagrid可以直接接收这个 json对象,并自动把内容显示到table中。
前台:
- <!-- 显示列表 -->
- <table id="dg" title="" class="easyui-datagrid"
- style="700px;height:250px"
- toolbar="#toolbar" pagination="true" rownumbers="true"
- fitColumns="true" singleSelect="true" fit="true" border="0"
- url="../servlet/Table_Do" >
- <thead>
- <tr>
- <th field="name" width="50">姓名</th>
- <th field="age" width="50">年龄</th>
- <th field="phone" width="50">电话</th>
- <th field="email" width="50">邮箱</th>
- </tr>
- </thead>
- </table>
后台:
- public void doPost(HttpServletRequest request, HttpServletResponse response){
- String account="5"; //= request.getParameter("account");
- JSONObject json = new JSONObject();
- JSONArray array = new JSONArray();
- JSONObject member = null;
- Table t = new Table();
- ArrayList<Table> a;
- try {
- a = t.listAll();
- for (int i=0;i<a.size();i++) {
- member = new JSONObject();
- member.put("name", a.get(i).getName());
- member.put("age", a.get(i).getAge());
- member.put("phone", a.get(i).getPhone());
- member.put("email", a.get(i).getEmail());
- array.add(member);
- }
- } catch (SQLException e1) {
- e1.printStackTrace();
- }
- PrintWriter pw;
- try {
- pw = response.getWriter();
- pw.print(array.toString());
- pw.close();
- } catch (IOException e) {
- e.printStackTrace();
- }
- }
- public ArrayList<Table> listAll() throws SQLException{
- Connection conn = null;
- PreparedStatement ps = null;
- ResultSet rs = null;
- ArrayList<Table> list = new ArrayList<Table>();
- try{
- conn=DBConnection.getConnection();
- String sql = "select * from tab";
- ps = conn.prepareStatement(sql);
- rs = ps.executeQuery();
- Table user = new Table();
- while(rs.next()){
- user.setName(rs.getString("name"));
- user.setAge(rs.getInt("age"));
- user.setPhone(rs.getString("phone"));
- user.setEmail(rs.getString("email"));
- list.add(user);
- }
- }finally{
- DBConnection.close(rs, ps, conn);
- }
- return list;
- }
这里需要注意几点:
一: 后台传来的数据一定要是json类型的
可以先在后台控制台打印一下看看
二:json数组的名称要和前台列表的表头对应