最初の5つのレコードのみを表示しようとしています。これは、データセットを生成している角度サービスです。どうやってやるの?角度データを設定する
myApp.service('allCurrentSettingsService', ['$http', '$q', function ($http, $q) {
var allSettings = null;
this.getList = function() {
var def = $q.defer()
if (allSettings) {
def.resolve(allSettings);
} else {
$http.post('GetAllCurrentSettings')
.then(function (response) {
var response = $.parseJSON(response.data)
allSettings = response;
def.resolve(allSettings);
});
}
return def.promise;
}
}]);
使用'limitTo'フィルタ。 –
ページ制限にこの制限を使用しています。 $ scope.query = { 順:: '名前'、 制限:5、 ページ:1 }私のような何かを行うことができます。 – user6440175
あなたは '$ index'を使用して、またはインデックスに基づいて5つのレコードを渡すことによって、これを達成することができます、あなたは2ページをクリックしたときのように、あなたは9 –