我有一个检索员工列表的 Web API。现在,当我调用$http
服务时,我可以从 WebApi 获取数据,但它既没有填充到表中也没有给出任何错误。
注意:我使用的是角度 v1.5.7
下面是我写的代码:
HTML
<body ng-app="employee" ng-controller="EmployeeController as emp">
<div class="container-fluid">
<div class="row">
<div class="col-lg-12">
<div class="table-responsive">
<table class="table table=bordered table-hover">
<thead>
<tr>
<th>Name <input type="text" class="searchbar" placeholder="Fileter by Name" ng-model="search.FullName" /></th>
<th>Department <input type="text" class="searchbar" placeholder="Filter by Department" ng-model="search.Department"/></th>
<th>Designation <input type="text" class="searchbar" placeholder="Filter by Designation" ng-model="search.Designation"/></th>
<th>DOJ <input type="text" class="searchbar" placeholder="Filter by DOJ" ng-model="search.Doj" /></th>
<th>Action</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="e in emp.AllEmployees | filter:search:strict">
<td>{{e.FullName}}</td>
<td>{{e.Department}}</td>
<td>{{e.Designation}}</td>
<td>{{e.Doj}}</td>
<td><a ng-click="emp.RetrieveDetails(e.Id)">Edit</a> <a ng-click="emp.Delete(e.Id)">Delete</a></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</body>
JS
'use strict';
var apiUrl = 'http://localhost:56997/api/';
var app = angular.module('employee', []);
app.service('ngEmployeeService', function($http){
this.getEmployees = function()
{
var res = $http.get(apiUrl + 'employee/all');
return res;
}
});
app.controller('EmployeeController', function($scope, ngEmployeeService){
this.selectedEmployee = {};
function LoadEmployees()
{
var promise = ngEmployeeService.getEmployees();
promise.then(function(resp){
$scope.AllEmployees = resp.data;
}, function(err){
alert('Call Failed');
});
};
LoadEmployees();
});