1. 程式人生 > >Angularjs資料改變頁面不變問題

Angularjs資料改變頁面不變問題

初次接觸angularjs,實現一個刪除的功能,後臺資料重新整理了頁面卻無法重新整理,在網上找了很久的資料,特此記錄。
$scope.count = function(id){
            BillOfReturnServices.query('pro/materialRequire/editCount', id).then(function (info){
                if(info.hasSuccess){
                    if(info.data > 0 ){
                        /*$state.reload('editBillOfReturn'); 會重新整理整個頁面*/ 
                        $scope.$apply(); //手動重新整理
                        $scope.queryById2(id);
                    }else{
                        $scope.page.query = true;
                    }
                    }
            })
            layer.closeAll();
        }