我是新手,有人可以帮我解决这个问题。
我的代码:
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");
})
});