gpt4 book ai didi

http - 如何从angularjs调用外部休息服务?

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



我正在尝试使用 $http 服务从 Angular 调用外部 REST 服务。
问题是我被困在 $http.get 方法上,因为每次我调用
其余服务时,我都会收到状态为 0 的错误,并且错误回调的数据参数
中没有任何信息。

到目前为止,我已经尝试在端口 5000 上调用本地服务 runnig:$http.get('http://<code>localhost</code>:5000/ping')这应该返回一个带有属性和值的 json 对象。另一种方法是调用 http://api.flickr.com/services/rest/?method=flickr.test.echo&name=test希望得到答案。对于他们两个,我得到相同的错误:我之前提到过。

调用是从注入(inject)了 http 服务的 Angular Controller 发出的。

谢谢。

最佳答案

你试过吗:

    $http({method: 'GET', url: 'someURL'}).
success(function(data, status, headers, config) {
//set view model or do something.

}).
error(function(data, status, headers, config) {

});

关于http - 如何从angularjs调用外部休息服务?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16074668/

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