我创建了一个restfull webservice:
(例如:http://localhost:8080/RestfulAndAngularJS_Server/rest/product/findall
)我正在尝试使用AngularJS连接该restfull Web服务,但我的状态为0
。
$http({ method: 'GET', url: 'http://localhost:8080/RestfulAndAngularJS_Server/rest/product/findall' }).
success(function (data, status, headers, config) {
$window.alert('success')
}).
error(function (data, status, headers, config) {
$window.alert('failure')
});
这是我的示例代码我收到失败警报,但我需要成功。