ASP.NET WebAPIでng-gridを使用する簡単な作業例を作成しようとしています。したがって、ng-gridサンプルページのサーバー側ページングサンプルから始めました( http://angular-ui.github.io/ng-grid/ );とにかく、デバッグ時にデータが正しく受信されたことを確認できたとしても、グリッドには常に空の列が表示されます。おそらく、グリッドのセットアップに何かが欠けているだけかもしれませんが、見つけたサンプルはすべて私のものに似ています。誰も助けてもらえますか?ここに私がやったことがあります:
アップデート#1:提案された解決策は機能しているようですが、1ページ目のみです。新しいページに移動するか、更新が必要な他の操作を行うたびに、サーバーがデータ変更を期待どおりに返しても、表示されるデータは変わりません。また、私が見つけたすべてのコードサンプルから、データを設定する正しい方法は、空にして再び入力するのではなく、単に配列メンバーの値を置き換えることであるようです。 https://groups.google.com/forum/#!searchin/angular/nggrid/angular/vUIfHWt4s_4/oU_C9w8j-uMJ で提案されているように適用してみましたが、同じ結果になります。
新しいMVC4アプリを作成し、NuGetパッケージを更新し、angularおよびng-gridパッケージを追加します。私の偽のデータモデルはItemクラスで表されます。
public sealed class Item
{
public int Id { get; set; }
public string Name { get; set; }
public int Age { get; set; }
public bool IsFemale { get; set; }
}
また、さまざまなデータセットのページング、フィルタリング、およびソートを処理するためのいくつかのモデルを追加します(一般的なページングベースモデル-PagedFilter-といくつかの派生モデルを使用する方が簡単です)。
public class PagedFilter
{
private int _nPageSize;
private int _nPageNumber;
public int PageSize
{
get { return _nPageSize; }
set
{
if (value < 1) throw new ArgumentOutOfRangeException("value");
_nPageSize = value;
}
}
public int PageNumber
{
get { return _nPageNumber; }
set
{
if (value < 1) throw new ArgumentOutOfRangeException("value");
_nPageNumber = value;
}
}
public int TotalItems { get; set; }
public int TotalPages
{
get { return (int)Math.Ceiling((double)(TotalItems / PageSize)); }
}
public PagedFilter()
{
_nPageSize = 20;
_nPageNumber = 1;
}
}
ItemFilterは次のとおりです。
public class ItemFilter : PagedFilter
{
public List<string> SortFields { get; set; }
public List<string> SortDirections { get; set; }
public string Name { get; set; }
public int? MinAge { get; set; }
public int? MaxAge { get; set; }
}
次に、アイテムを取得するためのAPIコントローラーを追加します。
public class ItemController : ApiController
{
// fake data
private readonly List<Item> _items;
public ItemController()
{
Random rnd = new Random();
_items = new List<Item>();
char c = 'a';
for (int i = 0; i < 1000; i++)
{
_items.Add(new Item
{
Id = i,
Age = rnd.Next(1, 100),
IsFemale = ((i & 1) == 0),
Name = String.Format(CultureInfo.InvariantCulture, "{0:00000}-{1}",
i, new string(c, 5))
});
if (++c > 'z') c = 'a';
}
}
public dynamic Get([FromUri] ItemFilter filter)
{
var items = _items.AsQueryable();
// filtering
if (!String.IsNullOrEmpty(filter.Name))
items = items.Where(i => i.Name.Contains(filter.Name));
if (filter.MinAge.HasValue)
items = items.Where(i => i.Age >= filter.MinAge.Value);
if (filter.MaxAge.HasValue)
items = items.Where(i => i.Age <= filter.MaxAge.Value);
// ...sorting (using Dynamic Linq) omitted for brevity...
// paging
int nTotalItems = items.Count();
items = items.Skip((filter.PageNumber - 1) * filter.PageSize)
.Take(filter.PageSize);
return new
{
totalItems = nTotalItems,
items = items.ToArray()
};
}
}
クライアント側では、my angular appはng-gridサンプルでモデル化された単一のコントローラーです。したがって、実際のシナリオで、$ scopeにプロパティを直接追加しますむしろモデル(おそらくTypeScriptクラスから生成された)を使用してください。
<div ng-app="MyApp" ng-controller="MainController">
<div ng-grid="gridOptions" style="height: 400px">
</div>
</div>
JS:
var app = angular.module('MyApp', ['ngGrid']);
app.controller('MainController', ['$scope', '$http', function ($scope, $http, $apply) {
$scope.items = [];
// filter
$scope.filterOptions = {
filterText: "",
useExternalFilter: true
};
// paging
$scope.totalServerItems = 0;
$scope.pagingOptions = {
pageSizes: [25, 50, 100],
pageSize: 25,
currentPage: 1
};
// sort
$scope.sortOptions = {
fields: ["name"],
directions: ["ASC"]
};
// grid
$scope.gridOptions = {
data: "items",
columnDefs: [
{ field: "name", displayName: "Name", pinnable: true },
{ field: "age", displayName: "Age", width: "60" },
{ field: "isFemale", displayName: "F", width: "40" }
],
enablePaging: true,
enablePinning: true,
pagingOptions: $scope.pagingOptions,
filterOptions: $scope.filterOptions,
keepLastSelected: true,
multiSelect: false,
showColumnMenu: true,
showFilter: true,
showGroupPanel: true,
showFooter: true,
sortInfo: $scope.sortOptions,
totalServerItems: "totalServerItems",
useExternalSorting: true,
i18n: "en"
};
$scope.refresh = function() {
setTimeout(function () {
var p = {
name: $scope.filterOptions.filterText,
pageNumber: $scope.pagingOptions.currentPage,
pageSize: $scope.pagingOptions.pageSize,
sortFields: $scope.sortOptions.fields,
sortDirections: $scope.sortOptions.directions
};
$http({
url: "/api/item",
method: "GET",
params: p
}).success(function(data, status, headers, config) {
$scope.totalServerItems = data.totalItems;
// SUGGESTION #1 -- empty and fill the array
/* $scope.items.length = 0;
angular.forEach(data.items, function (item) {
$scope.items.Push(item);
});
*/
// https://groups.google.com/forum/#!searchin/angular/nggrid/angular/vUIfHWt4s_4/oU_C9w8j-uMJ
$scope.$apply(function () { $scope.items = data.items; });
if (!$scope.$$phase) {
$scope.$apply();
}
}).error(function(data, status, headers, config) {
alert(JSON.stringify(data));
});
}, 100);
};
// watches
$scope.$watch('pagingOptions', function (newVal, oldVal) {
if (newVal !== oldVal && newVal.currentPage !== oldVal.currentPage) {
$scope.refresh();
}
}, true);
$scope.$watch('filterOptions', function (newVal, oldVal) {
if (newVal !== oldVal) {
$scope.refresh();
}
}, true);
$scope.$watch('sortOptions', function (newVal, oldVal) {
if (newVal !== oldVal) {
$scope.refresh();
}
}, true);
$scope.refresh();
}]);
私のコードでは、成功コールバックが呼び出され、返されたすべてのアイテムをdata.itemsで参照できます。それでも、グリッドには何も表示されません。コンソールにエラーは表示されません。
少し実験した後、正しいコードを見つけたと思います。 $ applyに関するこの投稿は、少し助けになりました: http://jimhoskins.com/2012/12/17/angularjs-and-apply.html 。実際、もしデータが既にこれを提供している$ httpから来ているので、もし私がよく理解していれば、applyの呼び出しはまったく必要ないはずです。それで、成功コールバックでスコープ項目変数を設定するだけで終わりました。これが再び完全なJSです。これが私のような新人の助けになることを願っています。次に、TypeScriptモデル、サービス、および実際のすべてのものを使用してテストを拡張します。新しい投稿が必要になるのではないかと心配しています... :)
var app = angular.module('MyApp', ['ngGrid']);
app.controller('MainController', ['$scope', '$http', function ($scope, $http, $apply) {
$scope.items = [];
// filter
$scope.filterOptions = {
filterText: "",
useExternalFilter: true
};
// paging
$scope.totalServerItems = 0;
$scope.pagingOptions = {
pageSizes: [25, 50, 100],
pageSize: 25,
currentPage: 1
};
// sort
$scope.sortOptions = {
fields: ["name"],
directions: ["ASC"]
};
// grid
$scope.gridOptions = {
data: "items",
columnDefs: [
{ field: "id", displayName: "ID", width: "60" },
{ field: "name", displayName: "Name", pinnable: true },
{ field: "age", displayName: "Age", width: "60" },
{ field: "isFemale", displayName: "F", width: "40" }
],
enablePaging: true,
enablePinning: true,
pagingOptions: $scope.pagingOptions,
filterOptions: $scope.filterOptions,
keepLastSelected: true,
multiSelect: false,
showColumnMenu: true,
showFilter: true,
showGroupPanel: true,
showFooter: true,
sortInfo: $scope.sortOptions,
totalServerItems: "totalServerItems",
useExternalSorting: true,
i18n: "en"
};
$scope.refresh = function() {
setTimeout(function () {
var sb = [];
for (var i = 0; i < $scope.sortOptions.fields.length; i++) {
sb.Push($scope.sortOptions.directions[i] === "DESC" ? "-" : "+");
sb.Push($scope.sortOptions.fields[i]);
}
var p = {
name: $scope.filterOptions.filterText,
pageNumber: $scope.pagingOptions.currentPage,
pageSize: $scope.pagingOptions.pageSize,
sortInfo: sb.join("")
};
$http({
url: "/api/item",
method: "GET",
params: p
}).success(function(data, status, headers, config) {
$scope.totalServerItems = data.totalItems;
$scope.items = data.items;
}).error(function(data, status, headers, config) {
alert(JSON.stringify(data));
});
}, 100);
};
// watches
$scope.$watch('pagingOptions', function (newVal, oldVal) {
if (newVal !== oldVal) {
$scope.refresh();
}
}, true);
$scope.$watch('filterOptions', function (newVal, oldVal) {
if (newVal !== oldVal) {
$scope.refresh();
}
}, true);
$scope.$watch('sortOptions', function (newVal, oldVal) {
if (newVal !== oldVal) {
$scope.refresh();
}
}, true);
$scope.refresh();
}]);
(補足として、コードから、フィールドと方向に2つの配列ではなく、ソートデータに1つの文字列を渡すことがわかります。実際、入力のメンバーとして配列を受け取る正しい方法が見つかりませんでした。 C#コントローラーのモデル;したがって、各フィールド名の先頭に+または-が昇順/降順の方向にある単一の文字列を渡すだけです。
Ng-gridのデータソースをitems
に設定していますが、サーバー成功コールバックで項目配列を更新することはありません。
成功したコールバックで、このようなことをします
$scope.totalServerItems = data.totalItems;
angular.forEach(data.items, function(item) {
$scope.items.Push(item);
});
それも役立つかもしれません
HTMLコードサンプル
<html ng-app="myApp">
<head lang="en">
<meta charset="utf-8">
<title>Getting Started With ngGrid code-sample</title>
<script type="text/javascript" src="angular.js"></script>
<script type="text/javascript" src="ng-grid-1.3.2.js"></script>
</head>
<body ng-controller="MyCtrl">
<div class="gridStyle" ng-grid="gridOptions"></div>
</body>
</html>
AngularJsコードサンプル
var app = angular.module('myApp', ['ngGrid']);
app.controller('MyCtrl', function($scope, $http) {
$scope.filterOptions = {
filterText: "",
useExternalFilter: true
};
$scope.totalServerItems = 0;
$scope.pagingOptions = {
pageSizes: [250, 500, 1000],
pageSize: 250,
currentPage: 1
};
$scope.setPagingData = function(data, page, pageSize){
var pagedData = data.slice((page - 1) * pageSize, page * pageSize);
$scope.myData = pagedData;
$scope.totalServerItems = data.length;
if (!$scope.$$phase) {
$scope.$apply();
}
};
$scope.getPagedDataAsync = function (pageSize, page, searchText) {
setTimeout(function () {
var data;
if (searchText) {
var ft = searchText.toLowerCase();
$http.get('jsonFiles/largeLoad.json').success(function (largeLoad) {
data = largeLoad.filter(function(item) {
return JSON.stringify(item).toLowerCase().indexOf(ft) != -1;
});
$scope.setPagingData(data,page,pageSize);
});
} else {
$http.get('jsonFiles/largeLoad.json').success(function (largeLoad) {
$scope.setPagingData(largeLoad,page,pageSize);
});
}
}, 100);
};
$scope.getPagedDataAsync($scope.pagingOptions.pageSize, $scope.pagingOptions.currentPage);
$scope.$watch('pagingOptions', function (newVal, oldVal) {
if (newVal !== oldVal && newVal.currentPage !== oldVal.currentPage) {
$scope.getPagedDataAsync($scope.pagingOptions.pageSize, $scope.pagingOptions.currentPage, $scope.filterOptions.filterText);
}
}, true);
$scope.$watch('filterOptions', function (newVal, oldVal) {
if (newVal !== oldVal) {
$scope.getPagedDataAsync($scope.pagingOptions.pageSize, $scope.pagingOptions.currentPage, $scope.filterOptions.filterText);
}
}, true);
$scope.gridOptions = {
data: 'myData',
enablePaging: true,
showFooter: true,
totalServerItems: 'totalServerItems',
pagingOptions: $scope.pagingOptions,
filterOptions: $scope.filterOptions
};
});
私は最近ng-gridで仕事をしています。私は、AngularJSの新しいバージョンを参照していた同様の問題に遭遇しました。必ずangular min file 1.0.2。を参照してください。
ここに、ページネーションを使用したng-gridのクライアント側コードがあります。 Angular JSの適切なバージョンを実装すると、完全に機能します。
var app = angular.module('myApp', ['ngGrid']);
app.controller('MyCtrl', function ($scope, $http) {
// We needed to bring back mer becase we were using a variable that was being reassigned later on
var mer = [{ Item: "Bottle", Pcode: 50, OHQ: 333, AQ: 33, Details: "CLICK" },
{ Item: "Bottle", Pcode: 43, OHQ: 2350, AQ: 1250, Details: "CLICK" },
{ Item: "Bottle", Pcode: 27, OHQ: 4000, AQ: 3000, Details: "CLICK" },
{ Item: "Bottle", Pcode: 29, OHQ: 55, AQ: 10, Details: "CLICK" },
{ Item: "Bottle", Pcode: 34, OHQ: 27, AQ: 2, Details: "CLICK" },
{ Item: "Bottle", Pcode: 50, OHQ: 111, AQ: 33, Details: "CLICK" },
{ Item: "Bottle", Pcode: 43, OHQ: 123, AQ: 1250, Details: "CLICK" },
{ Item: "Bottle", Pcode: 27, OHQ: 1234, AQ: 3000, Details: "CLICK" },
{ Item: "Bottle", Pcode: 29, OHQ: 5678, AQ: 10, Details: "CLICK" },
{ Item: "Bottle", Pcode: 34, OHQ: 0, AQ: 2, Details: "CLICK" }];
$scope.filterOptions = {
filterText: "",
useExternalFilter: false
};
$scope.totalServerItems = 0;
$scope.pagingOptions = {
pageSizes: [5, 10],
pageSize: 5,
currentPage: 1
};
$scope.setPagingData = function (data, page, pageSize) {
var pagedData = data.slice((page - 1) * pageSize, page * pageSize);
$scope.myData = pagedData;
$scope.totalServerItems = data.length;
if (!$scope.$$phase) {
$scope.$apply();
}
};
// I rearranged some of the code in this function. I noticed we were calling the same function
// in the end just with a slightly different set of data....so instead of having 18-ish lines of code
// we have 12 (YAY)
$scope.getPagedDataAsync = function (pageSize, page, searchText) {
setTimeout(function () {
var data = mer;
if (searchText) {
var ft = searchText.toLowerCase();
data = mer.filter(function (item) {
JSON.stringify(item).toLowerCase().indexOf(ft) != -1;
});
}
$scope.setPagingData(data, page, pageSize);
}, 100);
};
$scope.getPagedDataAsync($scope.pagingOptions.pageSize, $scope.pagingOptions.currentPage);
$scope.$watch('pagingOptions', function (newVal, oldVal) {
// Got rid of the other check here...this is what was causing the filter to not change the data when it changed.
if (newVal !== oldVal) {
$scope.getPagedDataAsync($scope.pagingOptions.pageSize, $scope.pagingOptions.currentPage, $scope.filterOptions.filterText);
}
}, true);
$scope.$watch('filterOptions', function (newVal, oldVal) {
if (newVal !== oldVal) {
$scope.getPagedDataAsync($scope.pagingOptions.pageSize, $scope.pagingOptions.currentPage, $scope.filterOptions.filterText);
}
}, true);
$scope.gridOptions = {
data: 'myData',
enablePaging: true,
showFooter: true,
totalServerItems: 'totalServerItems',
pagingOptions: $scope.pagingOptions,
filterOptions: $scope.filterOptions
};
});
最後のドキュメントはこの質問について非常に明確です: http://ui-grid.info/docs/#/tutorial/308_external_filtering
私の結果のコード:
var pagination = {
pageNumber: 1,
pageSize: 10,
// list fields to be sorted
sort: [{field:'dup_percentage', direction:'desc'}],
// list fields to be filtered
filter: []
};
$scope.gridOptions = {
enableFiltering: true,
useExternalFiltering: true,
columnDefs: [...],
onRegisterApi: function( gridApi ) {
$scope.gridApi = gridApi;
$scope.gridApi.core.on.filterChanged( $scope, function()
{
var grid = this.grid;
// reset filters
pagination.filter = [];
// loop over all columns
angular.forEach(grid.columns, function(column, i)
{
// loop over filters
if(typeof column.filters!==undefined)
{
angular.forEach(column.filters, function(filter, j)
{
// add column name and value to filter array
// to be send server side
if(typeof filter.term!=undefined && filter.term!==undefined)
{
//console.log('add filter', {column:column.name, search:filter.term});
pagination.filter.Push({column:column.name, search:filter.term});
}
});
}
});
// when user types it's search term
// server would be hitting too much
// so we add 500ms throttle
if (angular.isDefined($scope.filterTimeout))
{
$timeout.cancel($scope.filterTimeout);
}
$scope.filterTimeout = $timeout(function ()
{
// use pagination var which contains all info
// needed server side
getPage();
}, 500);
});
クライアント側が完了しました!あなたはそれをサーバー側で処理する必要があります、私はPHP/Mysqlを運転しているので、.Net WebAPIであなたを助けることはできません...