1
(function(ng, app){
app = angular.module('app', []);
app.config(function($provide) {
$provide.constant('town', 'Burlington');
});
app.constant('name', 'Rob F.');
app.controller('MainCtrl', [
'name', 'town',
function MainCtrl(name, town) {
this.getName = function() {
return name;
};
this.getTown = function() {
return town;
};
}
]);
}(angular));
http://jsfiddle.net/founddrama/RvXn3/任何人都可以告訴我這是如何工作的?
我看到我們傳遞angular
作爲論據,但IIFE收集ng, app
。有誰能告訴我什麼是ng, app
在這裏?我沒有看到ng
用在哪裏?
這是一個寫得不好的代碼,這就是爲什麼要添加: – texasbruce