我需要在Angular-Kendo网格中实现服务器端分页。我无法从Angular方面清楚地了解如何做到这一点。
有人可以帮忙吗?
答案 0 :(得分:9)
使用最新版本的Kendo UI (in Beta right now),我们可以使用Angular提供的$http.post
方法来实现服务器端分页,以及Kendo Grid读取功能。
这是一个使用MVC 5控制器作为从数据源获取的数据的端点的示例。它通过将page
和pageSize
发送到控制器来模拟服务器分页,如果需要,您还可以发送take
和skip
并根据需要处理它。
HTML标记
<div ng-controller="MyCtrl">
<kendo-grid k-options="mainGridOptions"></kendo-grid>
</div>
<强>的JavaScript 强>
function MyCtrl($scope, $http) {
$scope.mainGridOptions = {
dataSource: {
schema: {
data: "Data",
total: "Total"
},
transport: {
read: function (e) {//You can get the current page, pageSize etc off `e`.
var requestData = {
page: e.data.page,
pageSize: e.data.pageSize,
type: "hello"
};
console.log(e);
$http({ method: 'POST', url: 'Home/DataSourceResult', data: requestData }).
success(function (data, status, headers, config) {
e.success(data);
//console.log(data.Data);
}).
error(function (data, status, headers, config) {
alert('something went wrong');
console.log(status);
});
}
},
pageSize: 1,
serverPaging: true,
serverSorting: true
},
selectable: "row",
pageable: true,
sortable: true,
groupable: true
}
}
您可以从e
声明中的参数read: function(e){}
获取当前pageSize,page,take,skip和更多内容。
因为post值引用了read函数中的参数,所以每次在网格上更新页面时它们都会更新。这是您每次网格进行更改时可用于更新帖子值的内容。然后网格重新绑定。
主页/ DataSourceResult控制器
[HttpPost]
public ActionResult DataSourceResult(int page, string type, int pageSize)
{
ResponseData resultData = new ResponseData();
string tempData = "";
if (page == 1)
{
tempData = "[{\"NAME\": \"Example Name 1\", \"DESCRIPTION\": \"Example Description 1\"},{\"NAME\": \"Example Name 2\",\"DESCRIPTION\": null}]";
}
else if (page == 2)
{
tempData = "[{\"NAME\": \"Example Name 3\", \"DESCRIPTION\": \"Example Description 3\"},{\"NAME\": \"Example Name 4\",\"DESCRIPTION\": \"Example Description 4\"}]";
}
resultData.Data = tempData;
resultData.Total = "4";
string json = JsonConvert.SerializeObject(resultData);
json = json.Replace(@"\", "");
json = json.Replace("\"[{", "[{");
json = json.Replace("}]\"", "}]");
return Content(json, "application/json");
}
非常基本,但正是我所需要的,也可以帮到你。这使用了原生的Angular http.get
功能,同时仍然允许Kendo Grid完成大部分繁重的工作。
答案 1 :(得分:2)
Kendo网格本质上支持服务器端分页,至少它有一个方便的内置API来帮助那里,所以你只需要将所有部分挂钩。这就是我想出的,我的网格数据源:
$scope.myGrid.dataSource = new kendo.data.DataSource({
transport:{
read:{
url: '/api/mygridapi?orderId=113',
dataType: 'json'
}
},
pageSize: 5,
serverPaging: true,
serverSorting: true,
serverFiltering: true,
serverGrouping: true,
serverAggregates: true,
schema:{
total: function(response) {
return 13; // call some function, or some scope variable that know the total items count
},
model: {
id: "id",
fields: {
'id': { type: "number", editable: false },
'name': { type: "string", editable: true, nullable: false, validation: { required: true } },
'price': { type: "number", editable: true, nullable: false, validation: { required: true } },
}
}
}
});
和我的网格标记:
<div kendo-grid k-pageable='{ "pageSize": 5, "refresh": true, "pageSizes": false }'
k-height="'250px'" k-column-menu="false" k-filterable="true" k-sortable="true" k-groupable="true"
k-data-source="myGrid.dataSource" k-options="{{myGrid.gridOpts}}" k-on-change="onSelectHandler(kendoEvent)">
和我的网络API控制器:
[System.Web.Http.HttpGet]
public IEnumerable<ProductsDTO> Get(int orderId)
{
NameValueCollection nvc = HttpUtility.ParseQueryString(Request.RequestUri.Query);
//the name value captures the paging info that kendo automatically appends to the query string when it requests data
//it has info such as teh current page, page size etc....
int take = int.Parse(nvc["take"]);
int skip = int.Parse(nvc["skip"]);
return productsSvc.GetProductsOfOrder(orderId,skip,take);
}
我的服务返回IQueryable
,但它也可以返回一个具体的列表,因为返回IQueryable
没有做任何事情来帮助Kendo弄清楚总共有多少项目。对我来说主要的问题是网格没有正确地计算总项目数,例如将显示第一页(前5项)但是剩下的项目没有被注意到,因此网格分页按钮被禁用所以我有点黑客攻击,但手动设置项目总数,即这些代码行:
schema:{
total: function(response) {
return 13; // call some function, or some scope variable that know the total items count
},.........
困扰我的一件事是必须手动设置总项目数。值得一提的是,在设置数据源时,您可以将函数传递给传输对象的read属性,该函数将包含一个包含当前分页/过滤信息的对象作为参数,因此您可以使用它来构建查询字符串手动而不是依赖于默认的kendo服务器请求:
transport: {
read: function (options) {
console.log(options);//see whats inside
//we can use the pageNo and pageSize property to create a query string manually
}
}