Angularjs以restfull webservices连接

时间:2015-07-20 12:39:30

标签: angularjs

我创建了一个restfull webservice(例如:http://localhost:8080/RestfulAndAngularJS_Server/rest/product/findall)我正在尝试使用angularjs连接那个restfull web服务但是我正在失败

我的示例代码是

$http.get('http://localhost:8080/RestfulAndAngularJS_Server/rest/product/findall').success(function(response){
  $window.alert('success')
}).error(function(data, status, headers, config) {
  $window.alert('failure')
});

如果有任何人有答案或示例代码,请立即向我发送解决方案。

3 个答案:

答案 0 :(得分:0)

请检查您的REST是否正常使用Google邮递员

答案 1 :(得分:0)

当您在restfull Web服务中返回Json格式数据时,请在Web服务中添加以下突出显示的内容,

返回Response.status(200).entity(empList)。标题(“Access-Control-Allow-Origin”,“*”) .build();

答案 2 :(得分:0)