使用angular内置服务的时候,通过
$http.get('data.json').success(function(response){
});
请求json数据,报ReferenceError: angular is not defined异常
解决:此前我在页面中引用的是----angular.min.js
经过查找应该是引入--<script src="http://apps.bdimg.com/libs/angular.js/1.4.6/angular.min.js"></script>
并且此标签应该放在其他script标签的上面,否则无效