从Angular 1.4.x迁移到1.7.x

时间:2018-10-16 10:09:13

标签: angularjs

我正在尝试从Angular 1.4.x升级到1.7.x。我在这里犯错误

scope.KillSession = function (school) {
var url = "./ChangeSchool";
sessionHub.removeSessionItem("alerts");
$http({
    method: 'POST',
    url: url,
    data: {
        schoolId: school
    }
}).success(function (data, status, headers, config) {
    location.reload();

}).error(function (data, status, headers, config) {
}); 

错误是

  

。成功不是函数

我可以通过使用

解决错误
.then(function successCallback(response) {
}, function errorCallback(response) {
});

这是我无法使用直接.success函数的对Angular函数的更改吗?

0 个答案:

没有答案