2016-07-14 60 views
0

我無法使此simple Angular example正常工作。JSfiddle上的角度示例

我收到未捕獲的錯誤:[$注射器:modulerr]未能實例化模塊應用

HTML:

<div ng-app="app" ng-controller="Example"> 
     <input type="text" placeholder="#1 Main Odd" 
       ui-blur="testfn('data.mainOdd1', $event, '#1 Main Odd');"> 
    </div> 

的Javascript:

angular 
    .module('app', []) 
    .directive('uiBlur', function($parse) { 
    return function(scope, elem, attrs) { 
     elem.bind('blur', function(event) { 
     scope.$apply(function() { 
      $parse(attrs.uiBlur)(scope, { 
      $event: event 
      }); 
     }); 
     }); 
    }; 
    }) 
    .controller('Example', function($scope) { 
    $scope.testfn = function(propertyName, $event, placeHolder) { 
     debugger;  
     console.log(propertyName, $event); 
    }; 
    }); 

我在做什麼錯在這裏?

感謝

回答