0
已經消化在我angularjs申請我的代碼
getGridPage('api/accounts/gettransactions') //$http call to server which sets the $scope
$scope.transactions = {}
這些線條和我得到$正在進行中的錯誤已經消化。 我該如何避免它?
已經消化在我angularjs申請我的代碼
getGridPage('api/accounts/gettransactions') //$http call to server which sets the $scope
$scope.transactions = {}
這些線條和我得到$正在進行中的錯誤已經消化。 我該如何避免它?
某處在getGridPage()
您正在致電scope.$apply()
或scope.$digest
。擺脫那個電話,錯誤將消失。
我很確定這兩條線都不是問題的根源。 如何顯示getGridPage的內容? – noppa
雖然我同意上面的評論,請看看這個答案:http://stackoverflow.com/questions/12729122/angularjs-prevent-error-digest-already-in-progress-when-calling-scope-apply(I不知道如何直接鏈接到答案,抱歉)。另外請務必閱讀關於它的評論。 –