내가 내 지시어의 템플릿을 정의 어디 장소에 지침의 링크 기능 내부에 정의 된 함수를 사용하고자하는 링크 기능 내부 기능에 NG가 클릭를 호출 할 수 없습니다나는 directive..i이
app.js
angular.module('app',[])
\t .controller('appCtrl', function($scope){
\t \t $scope.name = "Vikram Prasad";
\t })
\t .directive('directive', function(){
\t \t return{
\t \t \t restrict:'A',
\t \t \t templateUrl:'button.html',
\t \t \t link:function(elems, attrs, scope){
\t \t \t \t scope.index=0;
\t \t \t \t scope.colors = ['red','blue','green','orange','brown'];
\t \t \t \t scope.color = scope.colors[scope.index];
\t \t \t \t scope.changeColor = function(){
\t \t \t \t \t console.log('clicked');
\t \t \t \t \t if(scope.index>scope.colors.length){
\t \t \t \t \t \t scope.index = 0;
\t \t \t \t \t }
\t \t \t \t \t scope.color = scope.colors[scope.index];
\t \t \t \t \t scope.index++;
\t \t \t \t };
\t \t \t }
\t \t }
\t });
지시 템플릿
다음은 클릭에 응답하지 않는 템플릿 NG 클릭합니다. 여기서 내가 뭘 잘못하고 있니?
이 있어야한다.? – Viplock