我想从 RESTful API 访问我的服务。我在 angularJS 中添加了这段代码。但它总是返回失败。我不明白为什么。有什么帮助吗?
$http({ method: 'GET', url: 'http://localhost:3000/profiles/someUser'}).
success(function (data, status, headers, config) {
alert("success")
$scope.items = data;
}).
error(function (data, status, headers, config) {
alert("failure")
});
我的 RESTful API 中有profiles/:username 服务