아래는 내 각도 컨트롤러AngularJS - 조건부 속성이 변수와 함께 작동하지 않습니까?
각도 JS
var multistage = angular.module("multistage", []);
multistage.controller('groupStanding', function($scope1) {
$scope1.grouplimit = 3;
$scope1.competitorDTL = <?php echo json_encode($competitorDtl); ?>;
console.log($scope1.grouplimit);
});
이며,이 아래에있는 내 HTML 코드 ...
HTML입니다
<tbody data-ng-controller="fixtureController">
<tr data-ng-repeat="comp in competitorDTL">
<td>
<span class="badge" data-ng-if="$index+1 <= grouplimit">
{{$index+1}}</span> {{ comp.name}}
</td>
</tr>
</tbody>
그것의 작동하지 않는 및 문제가 무엇인지 정확히 알 수 없습니까? 변수를 grouplimit으로 바꾸고 3을 직접 입력하면됩니다.
에
data-ng-controller="fixtureController"
변화에게 그것을 사용했다'다단계 .grouplimit'을 html로 보냅니다. –올바른 컨트롤러를 사용 중이라고 가정하면'{{grouplimit}} '에게 기회를주십시오. – Ksyqo
선생님, multistage.grouplimit도 작동하지 않습니다 .. – Mikky