.controller('DtccRejectionController', function ($scope, $http) {
$http.get('http://localhost:55467/WCFServiceHost/DFAService.svc/GetDtccRejects")
.success(function (result) {
alert('got data');
$scope.Rejections = result.d;
if (result.d) {
alert('got if');
}
});
});
它给出了" undefined"导致.error功能。请帮忙