最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - AngularJS $http.get returns undefined and $http() is not a function - Stack Overflow

programmeradmin1浏览0评论

I'm building an app to dynamically load and display data from a database in AngularJS, but when I try to access my API (using either $http() or $http.get()), I receive errrors. $http.get() error: TypeError: undefined is not a function, $http() error: TypeError: object is not a function

This specific error occurs in the code to dynamically load navigation tabs.

The code for both in CoffeeScript:

p4pControllers.controller 'navCtrl', [
    '$routeParams'
    '$scope'
    '$http'
    ($http,$scope,$routeParams) ->
        $http(
        method:'GET'
        url:''
    ).success (data) ->
        $scope.tabs = data
        return
    return

    $http.get('').success (data) ->
       $scope.tabs = data
       return
    return
]

Does anyone see what I'm doing wrong here?

I'm building an app to dynamically load and display data from a database in AngularJS, but when I try to access my API (using either $http() or $http.get()), I receive errrors. $http.get() error: TypeError: undefined is not a function, $http() error: TypeError: object is not a function

This specific error occurs in the code to dynamically load navigation tabs.

The code for both in CoffeeScript:

p4pControllers.controller 'navCtrl', [
    '$routeParams'
    '$scope'
    '$http'
    ($http,$scope,$routeParams) ->
        $http(
        method:'GET'
        url:'http://p4p-api.snyx.nl/tables'
    ).success (data) ->
        $scope.tabs = data
        return
    return

    $http.get('http://p4p-api.snyx.nl/tables').success (data) ->
       $scope.tabs = data
       return
    return
]

Does anyone see what I'm doing wrong here?

Share Improve this question asked Jun 9, 2014 at 15:30 RogerCapicheRogerCapiche 731 gold badge1 silver badge3 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 9

When using the array notation for injecting dependencies, the order of the arguments is important:

In your code:

['$routeParams',
 '$scope',
 '$http',
 function ($http, $scope, $routeParams)  {
    // $http argument        ==> $routeParams
    // $scope argument       ==> $scope (by coincidence)
    // $routeParams argument ==> $http
}

So, basically, you are doing $routeParams.get(), but $routeParams has no method get() (nor is it a function itself).

发布评论

评论列表(0)

  1. 暂无评论