AngularJs ReferenceError:$ http未定义

前端之家收集整理的这篇文章主要介绍了AngularJs ReferenceError:$ http未定义前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有以下Angular函数
$scope.updateStatus = function(user) {    
    $http({
        url: user.update_path,method: "POST",data: {user_id: user.id,draft: true}
    });
};

但是每当这个函数调用,我得到ReferenceError:$ http没有在我的控制台中定义。有人可以帮助我理解我在这里做错了吗?

可能你没有注入$ http服务到你的控制器。有几种方法

请阅读this reference about DI.然后它变得很简单:

function MyController($scope,$http) {
   // ... your code
}
原文链接:https://www.f2er.com/angularjs/147643.html

猜你在找的Angularjs相关文章