gpt4 book ai didi

AngularJS错误.success不是一个函数

转载 作者:行者123 更新时间:2023-12-02 21:58:52 24 4
gpt4 key购买 nike

我已经构建了一个工厂来处理我的 Controller 的功能,但不知何故 Controller 在其中一个功能上返回错误:

Error: Auth.getUser(...).success is not a function @http://localhost:8080/app/controllers/mainCtrl.js:10:1
...

我不知道这里发生了什么,其余功能似乎工作正常?

主 Controller :

angular.module('mainCtrl', [])
.controller('mainController', function($rootScope, $location, Auth) {
var vm = this;
vm.loggedIn = Auth.isLoggedIn();
$rootScope.$on('$routeChangeStart', function() {
vm.loggedIn = Auth.isLoggedIn();
Auth.getUser()
.success(function(data) {
vm.user = data;
});
});
vm.doLogin = function() {
Auth.login(vm.loginData.username, vm.loginData.password)
.success(function(data) {
$location.path('/users');
});
};
});

最佳答案

请参阅 $http service documentation 中的“弃用通知” :

The $http legacy promise methods success and error have been deprecated. Use the standard then method instead.

您可以在documentation about $q中了解有关这些方法的更多信息。 .

关于AngularJS错误.success不是一个函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33531336/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com