错误:[ng:areq]参数'范围'是必需的数据表角度

时间:2017-01-24 09:14:49

标签: javascript angularjs datatable scope angular-datatables

我在角度中使用了数据表。我想删除项目。第一次它完全正常,但第二次显示错误。

  

错误:[ng:areq]参数'范围'是必需的

以下是我的代码。

$scope.dtInstance = {};
$scope.reloadData = function () {
    var resetPaging = true;
    $scope.dtInstance.rerender();
};

$scope.removeCompany = function (companyId) {
    if ($window.confirm("Are you sure !")) { //start if click on ok

        companyFactory.companyInfo(companyId, 'DELETE')
        .success(function (res) {
            $scope.reloadData();

            notify({
                message: 'Company has deleted!',
                classes: 'alert-danger',
                templateUrl: 'views/common/notify.html'
            });
        })
        .error(function (err) {});
    }
};

0 个答案:

没有答案