Đây là bộ điều khiển của mẫu chính:
app.controller('OverviewCtrl', ['$scope', '$location', '$routeParams', 'websiteService', 'helperService', function($scope, $location, $routeParams, websiteService, helperService) {
...
$scope.editWebsite = function(id) {
$location.path('/websites/edit/' + id);
};
}]);
Đây là chỉ thị:
app.directive('wdaWebsitesOverview', function() {
return {
restrict: 'E',
scope: {
heading: '=',
websites: '=',
editWebsite: '&'
},
templateUrl: 'views/websites-overview.html'
}
});
Đây là cách chỉ thị được áp dụng trong mẫu chính:
<wda-websites-overview heading="'All websites'" websites="websites" edit-website="editWebsite(id)"></wda-websites-overview>
và phương thức này được gọi từ mẫu chỉ thị (website-Overview.html):
<td data-ng-click="editWebsite(website.id)">EDIT</td>
HỎI: Khi nhấp vào CHỈNH SỬA, lỗi này xuất hiện trong bảng điều khiển:
TypeError: Không thể sử dụng toán tử 'in' để tìm kiếm 'editWebsite' trong 1
Có ai biết những gì đang xảy ra ở đây?