接合不能与Angularjs一起使用 我的接头代码不起作用。我试图根据数组列表中的索引从Ui中删除它。
$scope.deleteDoc = function (index) {
var Doc = ($filter('orderBy')(($filter('filter')($filter('filter')($scope.Doclist, $scope.parametr), $scope.any)), $scope.myOrderBy)[index]);
//debugger;
var IsConf = confirm('آیا از حذف ' + Doc.Title + ' اطمینان دارید؟ ');
if (IsConf) {
$http.post('/Home/Delete/' + Doc.Id)
.then(function onsuccess(response) {
alert(Doc.Title + '!! رکورد حذف شد ');
debugger
$scope.Doclist.splice(index, 1);
}, function onfaild(response) {
alert('خطا هنگام حذف اطلاعات!!');
});
}
}