gpt4 book ai didi

extjs 分页使用jsp传递数据示例

转载 作者:qq735679552 更新时间:2022-09-28 22:32:09 25 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章extjs 分页使用jsp传递数据示例由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
Ext.onReady( function () {
 
store3 = new Ext.data.JsonStore({
autoDestroy: true ,
totalProperty : 'totle' ,
url: 'service.do' ,
storeId: 'myStore' ,
root: 'data' ,
fields : [ 'id' , "name" , "pw" ]
});
 
var pagingToolbar = new Ext.PagingToolbar({
emptyMsg : "没有数据" ,
displayInfo : true ,
displayMsg : "显示从{0}条数据到{1}条数据,共{2}条数据" ,
store : store3,
pageSize : 50
});
 
var grade = new Ext.grid.GridPanel({
title : "数据列表" ,
store : store3,
height : 300,
bbar : pagingToolbar,
columns : [ {
header : "id" ,
dataIndex : "id" ,
width : 300
}, {
header : "name" ,
dataIndex : "name" ,
width : 300
}, {
header : "pw" ,
dataIndex : "pw"
} ],
region : 'center'
});
 
var panel = new Ext.Viewport({
layout : 'border' ,
items : [ grade ]
});
});

action******************** 。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
protected void service(HttpServletRequest request,
HttpServletResponse response) throws ServletException, IOException {
 
List list = new ArrayList();
for ( int i = 0 ; i < 50 ; i++) {
Person p = new Person();
p.setId( "id" + i);
p.setName( "name" + i);
p.setPw( "pw" + i);
list.add(p);
}
StringBuffer info = new StringBuffer();
info.append( "{totle:2000,data:" );
info.append(JSONArray.fromObject(list));
info.append( "}" );
System.out.println(info.toString());
System.out.println( "*****doPos" );
request.setAttribute( "info" , info.toString());
request.getRequestDispatcher( "/info.jsp" ).forward(request, response);
}

info.jsp************注意:jsp除了 @page 不能有其他的文字 。

?
1
2
3
<%@ page language= "java" contentType= "text/html; charset=ISO-8859-1"
pageEncoding= "ISO-8859-1" %>
${info}

web.xml*************** 。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<? xml version = "1.0" encoding = "UTF-8" ?>
< web-app xmlns:xsi = "http://www.w3.org/2001/XMLSchema-instance"
xmlns = "http://java.sun.com/xml/ns/javaee" xmlns:web = "http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation = "http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
id = "WebApp_ID" version = "2.5" >
< servlet >
< servlet-name >test</ servlet-name >
< servlet-class >com.aa.TestAction</ servlet-class >
</ servlet >
< servlet-mapping >
< servlet-name >test</ servlet-name >
< url-pattern >*.do</ url-pattern >
</ servlet-mapping >
 
< welcome-file-list >
< welcome-file >index.jsp</ welcome-file >
</ welcome-file-list >
</ web-app >

  。

最后此篇关于extjs 分页使用jsp传递数据示例的文章就讲到这里了,如果你想了解更多关于extjs 分页使用jsp传递数据示例的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com