1. 程式人生 > >angular 實現依賴注入

angular 實現依賴注入

1:首先獲取module物件var myAppModule = angular.module('myApp', []); 

2:定義物件(類似spring中xml宣告bean物件<bean id="test" class="..."></bean>) myAppModule.value("test","我是測試的值");

3:使用時需要在控制器中使用,如:var myAppModule = controller("tt", function($scope,test) {
        $scope.name = test;
    });

這樣就實現了angular的依賴注入功能。