angular $ http.get()不起作用

时间:2017-11-18 06:26:45

标签: javascript html angularjs

我是新手,有人可以帮我解决这个问题。

我的代码:

myApp.controller('myController', function($scope, $http) {    
    $http({
        method : "GET",
        url : "http://localhost:8081/contact"
    }).then(function successCallback(response){
        console.log("success");
        $scope.records = response.data;
    }, function errorCallback(response){
        console.log("error");
    })
});

0 个答案:

没有答案