Angularjs HTTP возвращает ошибку со статусом 0
Я новичок в angularjs, всякий раз, когда я запрашиваю данные с сервера, я получаю статус ошибки 0. Может кто-то указать, что не так с моим кодом.
HttpGet
Огромные данные с точки зрения 1000+ записей
WCF RESTFull Services
index.html
<!DOCTYPE html>
<html>
<head>
<style>
table, th, td {
border: 1px solid grey;
border-collapse: collapse;
padding: 5px;
}
table tr:nth-child(odd) {
background-color: #f1f1f1;
}
table tr:nth-child(even) {
background-color: #ffffff;
}
</style>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.3.14/angular.min.js"></script>
</head>
<body>
<div ng-app="myApp" ng-controller="customersCtrl">
<table>
<tr ng-repeat="client in Clients">
<td>{{ client.id}}</td>
<td>{{ client.name }}</td>
</tr>
</table>
</div>
</body>
</html>
скрипт
<script>
var app = angular.module('myApp', []);
app.controller('customersCtrl', function ($scope, $http) {
$http.get("http://localhost:8080/Clients.svc/getclients&clinetid=?")
.success(function (data, status, headers, config) {
$scope.Clients = data.clients;
})
.error(function (data, status, headers, config) {
alert(status);
});
});
</script>