controller as
angular
.module('test', [])
.controller('first', function () {
this.somevar = 'Lorem'; // -> Эту переменную
})
.directive('one', function () {
restrict: 'A',
link: function () {
console.log(somevar); // <- Получить здесь
}
});