angularjs自身有二种,设置全局变量的方法,在加上js的设置全局变量的方法,总共有三种。要实现的功能是,在ng-app中定义的全局变量,在不同的ng-controller里都可以使用。
1,通过var 直接定义global variable,这根纯js是一样的。
2,用angularjs value来设置全局变量 。
3,用angularjs constant来设置全局变量 。
下面用一个例子,来说明,上面3种方法:
实例:
1,在app模块中,定义全局变量
- ‘use strict‘;
-
-
- var test2 = ‘tank‘;
-
- var phonecatApp = angular.module(‘phonecatApp‘, [
- ‘ngRoute‘,
- ‘phonecatControllers‘,
- ‘tanktest‘
- ]);
-
- phonecatApp.value(‘test‘,{"test":"test222","test1":"test111"});
-
- phonecatApp.constant(‘constanttest‘, ‘this is constanttest‘);
-
- phonecatApp.config([‘$routeProvider‘,
- function($routeProvider) {
- $routeProvider.
- when(‘/phones‘, {
- templateUrl: ‘partials/phone-list.html‘
- }).
- when(‘/phones/:phoneId‘, {
- templateUrl: ‘partials/phone-detail.html‘,
- controller: ‘PhoneDetailCtrl‘
- }).
- when(‘/login‘, {
- templateUrl: ‘partials/login.html‘,
- controller: ‘loginctrl‘
- }).
- otherwise({
- redirectTo: ‘/login‘
- });
- }]);
2,在controller中调用全局变量
- ‘use strict‘;
-
-
- var phonecatControllers = angular.module(‘phonecatControllers‘, []);
-
- phonecatControllers.controller(‘PhoneListCtrl‘, [‘$scope‘,‘test‘,‘constanttest‘,
- function($scope,test,constanttest) {
- $scope.test = test;
- $scope.constanttest = constanttest;
- $scope.test2 = test2;
- }]);
3,在html中看一下效果
- <div data-ng-controller="PhoneListCtrl">
- {{test.test1}}
- {{constanttest}}
- {{test2}}
- </div>
-
- 结果:test111 this is constanttest tank
其实我们可以通过其他方法来实现全局变量,例如:angularjs factory的功能。
地址:http://blog.51yip.com/jsjquery/1601.html
angularjs 设置全局变量的3种方法
原文:http://www.cnblogs.com/renyunbo/p/5829109.html