Ini adalah pengontrol template utama:
app.controller('OverviewCtrl', ['$scope', '$location', '$routeParams', 'websiteService', 'helperService', function($scope, $location, $routeParams, websiteService, helperService) {
...
$scope.editWebsite = function(id) {
$location.path('/websites/edit/' + id);
};
}]);
Ini adalah arahannya:
app.directive('wdaWebsitesOverview', function() {
return {
restrict: 'E',
scope: {
heading: '=',
websites: '=',
editWebsite: '&'
},
templateUrl: 'views/websites-overview.html'
}
});
Beginilah cara direktif diterapkan di template utama:
<wda-websites-overview heading="'All websites'" websites="websites" edit-website="editWebsite(id)"></wda-websites-overview>
dan ini adalah metode yang dipanggil dari template direktif (website-overview.html):
<td data-ng-click="editWebsite(website.id)">EDIT</td>
PERTANYAAN: Ketika EDIT diklik, kesalahan ini muncul di konsol:
TypeError: Tidak dapat menggunakan operator 'dalam' untuk mencari 'editWebsite' di 1
Adakah yang tahu apa yang terjadi di sini?