标签:
angular.module(‘myApp‘,[]) .factory(‘Data‘,function(){ return {message:‘111‘}; }) .controller(‘firstController‘,function($scope,Data){ //alert(Data.message); $scope.Data = Data; }) .controller(‘secondController‘,function($scope,Data){ $scope.Data = Data; });
标签:
原文地址:http://www.cnblogs.com/coding4/p/5572714.html