欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Angularjs 设置全局变量的方法总结

程序员文章站 2022-07-22 22:21:51
angularjs 设置全局变量的三种方法 angularjs自身有二种,设置全局变量的方法,在加上js的设置全局变量的方法,总共有三种。要实现的功能是,在ng-app中...

angularjs 设置全局变量的三种方法

angularjs自身有二种,设置全局变量的方法,在加上js的设置全局变量的方法,总共有三种。要实现的功能是,在ng-app中定义的全局变量,在不同的ng-controller里都可以使用。

1,通过var 直接定义global variable,这根纯js是一样的。

2,用angularjs value来设置全局变量 。

3,用angularjs constant来设置全局变量 。

下面用一个例子,来说明,上面3种方法:

实例:

1,在app模块中,定义全局变量

'use strict';

/* app module */

var test2 = 'tank';     //方法1,定义全局变量

var phonecatapp = angular.module('phonecatapp', [   //定义一个ng-app
 'ngroute',
 'phonecatcontrollers',
 'tanktest'
]);

phonecatapp.value('test',{"test":"test222","test1":"test111"}); //方法2定义全局变量

phonecatapp.constant('constanttest', 'this is constanttest');  //方法3定义全局变量

phonecatapp.config(['$routeprovider',        //设置路由
 function($routeprovider) {
  $routeprovider.
   when('/phones', {
    templateurl: 'partials/phone-list.html'   //这里没有设置controller,可以在模块中加上ng-controller
   }).
   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';

/* controllers */

var phonecatcontrollers = angular.module('phonecatcontrollers', []);

phonecatcontrollers.controller('phonelistctrl', ['$scope','test','constanttest',
 function($scope,test,constanttest) {
  $scope.test = test;          //方法2,将全局变量赋值给$scope.test
  $scope.constanttest = constanttest;  //方法3,赋值
  $scope.test2 = test2;         //方法1,赋值
 }]);

3,在html中看一下效果

<div data-ng-controller="phonelistctrl">
  {{test.test1}}
  {{constanttest}}
  {{test2}}
</div>

结果:test111 this is constanttest tank

其实我们可以通过其他方法来实现全局变量,例如:angularjs factory的功能。

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!