Noob angolare qui. Sto creando una direttiva per visualizzare ricorsivamente un albero di domande e domande secondarie. Sto usando un collegamento nel modello che chiama una funzione all'interno dell'ambito. Per qualche ragione, non chiama il metodo editQuestion()
.ng-clic non funziona all'interno del modello di una direttiva
Ecco il codice e il violino http://jsfiddle.net/madhums/n9KNv/
HTML:
<div ng-controller="FormCtrl">
<questions value="survey.questions"></questions>
</div>
Javascript:
var app = angular.module('myApp', []);
function FormCtrl ($scope) {
$scope.editQuestion = function (question) {
alert('abc');
};
$scope.survey = {
// ...
}
}
app.directive('questions', function($compile) {
var tpl = '<ol ui-sortable' +
' ng-model="value"' +
' class="list">' +
' <li ng-repeat="question in value | filter:search"' +
' <a href="" class="question">' +
' {{ question.name }}' +
' </a>' +
' <span class="muted">({{ question.type }})</span>' +
' <a href="" class="danger" ng-click="removeQuestion(question)">remove</a>' +
' <a href="" class="blue" ng-click="editQuestion(question)">edit</a>' +
' <choices value="question.choices"></choices>' +
' </li>' +
'</ol>';
return {
restrict: 'E',
terminal: true,
scope: { value: '=' },
template: tpl,
link: function(scope, element, attrs) {
$compile(element.contents())(scope.$new());
}
};
});
app.directive('choices', function($compile) {
var tpl = '<ul class="abc" ng-repeat="choice in value">'+
' <li>' +
' {{ choice.name }}' +
' <span class="muted">' +
' ({{ choice.questions.length }} questions)' +
' </span>' +
'' +
' <a href=""' +
' ng-click="addQuestions(choice.questions)"' +
' tooltip="add sub questions">' +
' +' +
' </a>' +
'' +
' <questions value="choice.questions"></questions>'
' </li>' +
'</ul>';
return {
restrict: 'E',
terminal: true,
scope: { value: '=' },
template: tpl,
link: function(scope, element, attrs) {
$compile(element.contents())(scope.$new());
}
};
});
Qualsiasi aiuto nella comprensione di questo sarebbe apprezzato.
Grazie. Mi sono sbagliato aggiungendo il comando ng-click = "onEdit()" alla direttiva. – Aravind
@Langdon, grazie per aver condiviso. Questo mi ha aiutato a risolvere il problema che stavo avendo. Nel mio modello, avevo e continuava a dare errori del parser fino a quando non ho eliminato le parentesi attorno a twowaybound.value dopo aver visto il tuo esempio. –