0
我需要將方法從控制器測試到指令中。角度指令中的測試訪問控制器
APP.angular.directive('miniCrud', function() {
return {
restrict: 'E',
require:"ngModel",
scope: {
miniCrudHeader: '@',
miniCrudConfig: '=',
modelValues : "=ngModel"
},
templateUrl: 'templates/mini-crud.html',
controller: ['$scope', 'lodash', 'filterFilter',
function($scope, _, filterFilter){
$scope.vm = {
getValue: function(item, index) {
var prop = $scope.miniCrudConfig.fields[index].name;
return item[prop];
}
// some other methods
}
}
}]
};
});
我該如何訪問$ scope.vm.getValue()?