gpt4 book ai didi

angularjs - $http GET 调用与 ng-click

转载 作者:可可西里 更新时间:2023-11-01 16:56:16 26 4
gpt4 key购买 nike

我从 AngularJS 开始,我需要使用它来使用 REST 服务。为什么这个 GET 调用不起作用?

controller.js

angular.module("myApp", []);

function GetController($scope) {

$scope.click = function() {

// $http.defaults.useXDomain = true;

var response = $http.get('http://localhost:8080/ticketsales/pruebas');

response.success(function(data, status, headers, config) {

alert("Ok.");

});

response.error(function(data, status, headers, config) {
alert("Error.");
});

};

}

index.html

<div ng-controller="GetController">

<button ng-click="click()">Click me</button>

</div>

最佳答案

您没有将 $http 传递给函数:

function GetController($scope)

到:

function GetController($scope, $http)

http://jsfiddle.net/rd13/mM2g7/2/

说真的,你需要查看你的控制台,如果你打开了控制台,你会看到类似这样的内容:“ReferenceError: $http is not defined”。

关于angularjs - $http GET 调用与 ng-click,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22409573/

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