0
angular.module('app.services', []).service("test", function($http, $rootScope){
this.test=function(){
$rootScope.name="test1";
};
};
angular.module('app.controllers', []).controller('TestController', function ($scope, test) {
test.send();
})
我沒有得到一個錯誤,但這些更改沒有應用到UI。我試過$ scope.apply()並出現錯誤。從服務更新角度模型
感謝還是調用$ rootScope.name = 「測試1」;不更新ui – nullException
你有沒有看到我貼的小提琴?請發佈您的HTML代碼 –