一些应该熟记的代码
Posted 飘然离去
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了一些应该熟记的代码相关的知识,希望对你有一定的参考价值。
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; });
以上是关于一些应该熟记的代码的主要内容,如果未能解决你的问题,请参考以下文章