AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
## 第十三章 依赖注入 AngularJS 使用 $injector 来管理依赖关系的查询与实例化。 ``` angular.module('myApp') .factory('greeter', function(){ return { greet: function(msg){ alert(msg); }; } }) .controller('MyCtrl', function($scope, greeter){ $scope.sayHello = function(msg){ greeter.greet(msg); }; }); ``` ### ngMin >[success] npm install -g ngmin >$ ngmin input.js output.js Grunt >[success] grunt-ngmin