singlepage

AngularJs ReferenceError: angular is not defined

蹲街弑〆低调 提交于 2019-11-26 16:59:12
问题 I trying to add a custom filter, but if I use the following code: angular.module('myApp',[]).filter('startFrom', function() { return function(input, start) { start = +start; //parse to int return input.slice(start); } }); But if I do so, I get: "ReferenceError: angular is not defined" in firebug. The rest of application is working fine, I am using ng-app in a tag div not in tag html, and https://ajax.googleapis.com/ajax/libs/angularjs/1.0.3/angular.js 回答1: You should put the include angular