訪問一個元素指令的範圍鑑於這種簡單的角模塊:角度:如何在控制器
angular.module('fixturesModule', [])
.directive('clubfixtures', function() {
"use strict";
return {
restrict: 'E',
replace: true,
transclude: true,
scope: {
club : "@club",
max : "@max"
},
templateUrl: "ClubResultsTemplate.html",
controller: function ($scope, $http) {
$http.get("data.json").success(function (data) {
$scope.results = data;
});
$scope.sortBy = "Date";
}
}
});
如何訪問俱樂部和最大的控制器功能?
謝謝, 傑夫
在其控制器的功能?在指令的控制器功能?或者在指令的父級的控制器函數中? –
使用共享服務? – maxisam
在上例中給出的'controller($ scope,$ http)'分配給'controller'。具體來說,'俱樂部'的價值將形成'$ http.get' – jeffeld