创建你的第一个常量
angular
.module('MyApp', [])
.constant('VERSION', 1.0);
你的常量现在已声明,可以注入控制器,服务,工厂,提供程序,甚至是配置方法:
angular
.module('MyApp')
.controller('FooterController', function(VERSION) {
this.version = VERSION;
});
<footer ng-controller="FooterController as Footer">{{ Footer.version }}</footer>