를 재사용 각도 :나는이 같은 컨트롤러가 사용자 정의로 컨트롤러 기능을 해 orderBy 기능
var moduleFichiersDupliques = angular.module('fichiersDupliques', []);
moduleFichiersDupliques.controller("FichiersDupliquesController", [ '$http', '$log', function($http, $log) {
var store = this;
$http.get('groupes-dupliques-data.json').success(function(data) {
store.groupesDupliquesData = data;
});
this.getNombreFichiersDansGroupe = function(groupe) {
return groupe.fichiers.length;
};
this.getTailleFichier = function(groupe) {
return groupe.tailleTotale/this.getNombreFichiersDansGroupe(groupe);
};
this.getTailleGaspillee = function(groupe) {
var tailleGaspillee = groupe.tailleTotale - this.getTailleFichier(groupe);
return tailleGaspillee;
};
}]);
내 HTML 코드
<td ng-repeat="groupe in fichiersDupliquesCtrl.groupesDupliquesData | orderBy:fichiersDupliquesCtrl.getTailleGaspillee:true">
{{fichiersDupliquesCtrl.getTailleGaspillee(groupe)}}
</td>
에서 NG 반복을 그리고 난이 오류 :
를TypeError: Cannot read property 'getTailleFichier' of undefined
at getTailleGaspillee (/test/js/fichiersdupliques.js:26:58)
at Array.<anonymous> (/test/js/angular-1.3.0.js:17321:24)
at comparator (/test/js/angular-1.3.0.js:17330:36)
at /test/js/angular-1.3.0.js:17337:34
at Array.sort (native)
at /test/js/angular-1.3.0.js:17326:22
at $parseFilter (/test/js/angular-1.3.0.js:11939:19)
at Object.interceptedExpression (/test/js/angular-1.3.0.js:12579:21)
at Scope.$digest (/test/js/angular-1.3.0.js:13957:40)
at Scope.$apply (/test/js/angular-1.3.0.js:14227:24)
이 함수를 사용자 정의 orderBy 함수와 HTML 페이지에서 모두 사용할 수 있도록 내 코드를 리팩터링 할 수 있습니까?
코드를 스캔은'{{fichiersDupliquesCtrl.getTailleGaspillee (Groupe의)}}'해야'{{groupe.getTailleGaspillee (Groupe의)}}' – JimmyRare