Angularjs [$rootScope:inprog] inprogress error
2022-08-30 19:06:36
我收到angularjs [$rootScope:inprog]错误。
Error: [$rootScope:inprog] http://errors.angularjs.org/1.2.7/$rootScope/inprog?p0=%24digest
.
这是函数调用
Members.get({}, function (response) { // success
$scope.family_mem = response.data;
}, function (error) { // ajax loading error
Data.errorMsg(); // display error notification
});
在控制台中,我通过php控制器函数获得结果,但不更新而是转到错误部分。$scope.family_mem
myApp.directive('mySelect', function() {
return{
restrict: 'A',
link: function(scope, element){
$(element).select2();
}
};
});