iam尝试在元素模板中获取代码:

rent.html

<td>{{ rent.id }}</td>
<td>{{ rent.auto }}</td>
<td>{{ rent.person }}</td>
<td>{{ rent.title }}</td>
<td>{{ rent.start }}</td>
<td>{{ rent.end }}</td>
<td><a ng-href="#" ng-click="acceptRent(rent.id)"><img src="bundles/chriskfzbuchung/images/accept.png" width="15" ng-hide="rent.buchungsStatus == 1"></a></td>
<td><a ng-href="#" ng-click="declineRent(rent.id)"><img src="bundles/chriskfzbuchung/images/decline.png" width="15" ng-hide="rent.buchungsStatus == 2"></a></td>


controller.js

 kfzModule.directive("kfzRent", function(){
        return {
            restrict: 'E',
            templateUrl: '/kfz-buchung/rent.html'
        };
    });


overview.html

<tr kfz-rent ng-repeat="rent in rents" ng-class="{'success' : rent.buchungsStatus == 1, 'danger' : rent.buchungsStatus == 2}">
                </tr>


我不知道如何处理Overview.html中的其余内容。

我终于只想要一个<kfz-rent></kfz-rent>

谢谢!

最佳答案

这应该工作:

 <kfz-rent ng-repeat="rent in rents" ng-class="{'success' : rent.buchungsStatus == 1, 'danger' : rent.buchungsStatus == 2}">
    <td>{{ rent.id }}</td>
    <td>{{ rent.auto }}</td>
    <td>{{ rent.person }}</td>
    <td>{{ rent.title }}</td>
    <td>{{ rent.start }}</td>
    <td>{{ rent.end }}</td>
    <td><a ng-href="#" ng-click="acceptRent(rent.id)"><img src="bundles/chriskfzbuchung/images/accept.png" width="15" ng-hide="rent.buchungsStatus == 1"></a></td>
    <td><a ng-href="#" ng-click="declineRent(rent.id)"><img src="bundles/chriskfzbuchung/images/decline.png" width="15" ng-hide="rent.buchungsStatus == 2"></a></td>
</kfz-rent>


ng-repeat的代码似乎很好。但是您必须在控制器中创建数组:

$scope.rents = [];


不要忘记为您的控制器创建别名

kfzModule.directive("kfzRent", function(){
    return {
        restrict: 'E',
        templateUrl: '/kfz-buchung/rent.html'
    };
   },
   controllerAs: 'rentController'
 };
});


干杯,

瓦伦丁

09-15 19:46