Bu, ana şablonun denetleyicisidir:
app.controller('OverviewCtrl', ['$scope', '$location', '$routeParams', 'websiteService', 'helperService', function($scope, $location, $routeParams, websiteService, helperService) {
...
$scope.editWebsite = function(id) {
$location.path('/websites/edit/' + id);
};
}]);
Yönerge şu şekildedir:
app.directive('wdaWebsitesOverview', function() {
return {
restrict: 'E',
scope: {
heading: '=',
websites: '=',
editWebsite: '&'
},
templateUrl: 'views/websites-overview.html'
}
});
Yönerge, ana şablonda şu şekilde uygulanır:
<wda-websites-overview heading="'All websites'" websites="websites" edit-website="editWebsite(id)"></wda-websites-overview>
ve bu yöntem yönerge şablonundan (website-genel bakış.html) çağrılır:
<td data-ng-click="editWebsite(website.id)">EDIT</td>
SORU: DÜZENLE tıklandığında, konsolda şu hata belirir:
TypeError: 1'de 'editWebsite' aramak için 'in' operatörü kullanılamaz
Burada neler olduğunu bilen var mı?