1.模块
var helloModule=angular.module('helloAngular',[]); helloModule.controller('helloNgCrtl',['$scope',function($scope){ }]);
完整的项目结构
2.路由
controller利用模板来生成视图
3.依赖注入
var bookStoreApp=angular.module('bookStoreApp',['ngRoute','bookStoreCtrls',....])
ng开头的是angular自身提供的模块,