我需要使用 REST Web 服务为我的应用程序实现列表分页。
这是我的代码
列表.js
Ext.define('bluebutton.view.BlueButton.TestingList', {
extend: 'Ext.List',
xtype: 'testinglistcard',
requires: [
'Ext.field.Select',
'Ext.field.Search',
'bluebutton.view.BlueButton.MemberDetail',
'Ext.plugin.ListPaging',
'Ext.plugin.PullRefresh',
'Ext.dataview.Override'
],
config: {
styleHtmlContent: true,
scrollable: 'vertical',
indexBar: true,
singleSelect: true,
onItemDisclosure: true,
grouped: true,
variableHeights : false,
store : { xclass : 'bluebutton.store.BlueButton.Testing'},
itemHeight :100,
id :'testinglist',
emptyText: '<p class="no-search-results">No member record found matching that search</p>',
itemTpl: Ext.create(
'Ext.XTemplate',
'<div class="tweet-wrapper">',
'<table>',
'<tr>',
'<td>',
' <div class="tweet">',
' <h3>{invoiceId}</h3>',
' <h3>Name: {billNumber}</h3>',
' <h3>Point Avalaible : {invoiceDate} , Last Visited : {invoiceAmount}</h3>',
' </div>',
'</td>',
'</tr>',
'</table>',
'</div>'
),
},
});
store.js
Ext.define('bluebutton.store.BlueButton.Testing', {
extend: "Ext.data.Store",
requires: ['bluebutton.model.BlueButton.Testing'],
config: {
grouper: {
groupFn: function (record) {
return record.get('invoiceId')[0];
}
},
model :'bluebutton.model.BlueButton.Testing',
storeId :'testingstore',
autoLoad: true,
pageSize: 5,
clearOnPageLoad: false,
}
});
模型.js
Ext.define('bluebutton.model.BlueButton.Testing', {
extend: 'Ext.data.Model',
config: {
idProperty: 'testingModel',
fields: [
{ name :'invoiceId'},
{ name: 'billNumber' },
{ name: 'invoiceDate' },
{ name: 'invoiceAmount' },
{ name :'downloadLink'},
],
proxy: {
type: 'rest',
url: 'http://localhost:8080/RESTFulExample/rest/json/metallica/invoicejsonPost',
reader: 'json',
actionMethods: {
create: 'POST',
read: 'POST',
update: 'PUT',
destroy: 'DELETE'
},
noCache: false, // get rid of the '_dc' url parameter
// extraParams: {
// userid: "test",
// // add as many as you need
// },
reader: {
type: 'json',
rootProperty: 'invoice'
},
writer: {
type: 'json',
},
}
}
});
JsonService.java
@GET
@Path("invoicejson/")
@Produces({ MediaType.APPLICATION_JSON })
public Response getInvoicesForCustomerJson(
@PathParam(value = "accountId") String accountId) {
InvoiceListDto invoices = generateMockData();
return Response.ok(invoices).build();
}
private InvoiceListDto generateMockData() {
List<InvoiceDto> invoices = new ArrayList<InvoiceDto>();
invoices.add(new InvoiceDto(1, "37897-001", new Date(), 58.92));
invoices.add(new InvoiceDto(2, "37897-002", new Date(), 293.63));
invoices.add(new InvoiceDto(3, "37897-003", new Date(), 173.3));
invoices.add(new InvoiceDto(4, "37897-004", new Date(), 130.71));
invoices.add(new InvoiceDto(5, "37897-005", new Date(), 270.71));
invoices.add(new InvoiceDto(6, "37897-006", new Date(), 370.71));
invoices.add(new InvoiceDto(7, "37897-007", new Date(), 570.71));
invoices.add(new InvoiceDto(8, "37897-008", new Date(), 670.71));
invoices.add(new InvoiceDto(9, "37897-009", new Date(), 770.71));
invoices.add(new InvoiceDto(10, "37897-010", new Date(), 970.71));
invoices.add(new InvoiceDto(11, "37897-011", new Date(), 3370.71));
invoices.add(new InvoiceDto(12, "37897-012", new Date(), 1220.71));
invoices.add(new InvoiceDto(13, "37897-013", new Date(), 1230.71));
invoices.add(new InvoiceDto(14, "37897-014", new Date(), 140.71));
invoices.add(new InvoiceDto(15, "37897-015", new Date(), 150.71));
invoices.add(new InvoiceDto(16, "37897-016", new Date(), 160.71));
invoices.add(new InvoiceDto(17, "37897-017", new Date(), 170.71));
return new InvoiceListDto(invoices);
}
我们如何实现 sencha 的分页?我应该在java或sencha端实现分页功能?