これはメインテンプレートのコントローラーです。
app.controller('OverviewCtrl', ['$scope', '$location', '$routeParams', 'websiteService', 'helperService', function($scope, $location, $routeParams, websiteService, helperService) {
...
$scope.editWebsite = function(id) {
$location.path('/websites/edit/' + id);
};
}]);
これはディレクティブです:
app.directive('wdaWebsitesOverview', function() {
return {
restrict: 'E',
scope: {
heading: '=',
websites: '=',
editWebsite: '&'
},
templateUrl: 'views/websites-overview.html'
}
});
これは、ディレクティブがメインテンプレートに適用される方法です。
<wda-websites-overview heading="'All websites'" websites="websites" edit-website="editWebsite(id)"></wda-websites-overview>
これはディレクティブテンプレート(website-overview.html)から呼び出されるメソッドです。
<td data-ng-click="editWebsite(website.id)">EDIT</td>
質問:[編集]をクリックすると、コンソールに次のエラーが表示されます:
TypeError:「in」演算子を使用して1の「editWebsite」を検索することはできません
ここで何が起こっているのか誰か知っていますか?