我正在编写一个指令来输出项目列表。这些项目应该从某个地方的JSON中读取。
现在,我想相应地将每个项呈现给将传递给指令的方法。然后,在我的模板中,我调用该方法,将其传递给要渲染的项目。
调用方法本身,但传递的项目为undefined
。
我错在哪里,以及如何实现这个目标?
您可以在此处查看和播放代码: https://jsfiddle.net/zpntqayr/
以下是代码:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Angular</title>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.1/angular.js"></script>
</head>
<body>
<div ng-app="myApp" ng-controller="myCtrl">
<drop-down-list items="data" display-item="itemToString(item)" />
</div>
<script>
var myApp = angular.module("myApp", []);
myApp.controller("myCtrl", function ($scope, $http) {
$scope.data = [{ "Name": "Value 1", "Value": 1 }, { "Name": "Value 2", "Value": 2 }, { "Name": "Value 3", "Value": 3 }, ] ;
$scope.itemToString = function (item) {
// alert(item);
return item.Name;
};
});
myApp.directive('dropDownList', function () {
return {
restrict: 'E',
replace: true,
scope: {
items: '=',
displayItem: '&'
},
template: '<ul><li ng-repeat="item in items">{{displayItem(item)}}</li></ul>',
};
});
</script>
</body>
</html>
答案 0 :(得分:3)
只需替换指令模板中的代码,如下所示:
{{displayItem(item)}}
带
{{displayItem({item: item})}}