Я пытаюсь передать переменную $scope в директиву, но ее не работает. Я улавливаю переменную в функции шаблона:
app.directive('customdir', function () {
return {
restrict: 'E',
template: function(element, attrs) {
console.log(attrs.filterby);
switch (attrs.filterby) {
case 'World':
return '<input type="checkbox">';
}
return '<input type="text" />';
}
};
});
Мне нужно значение переменной filterby
, а не имя переменной.