Как я делаю НГ-повторите в JSON-данные получены, как ответ.данных.D а не как ответ.данные ?
code in controller : $http( { method: "POST", url:"Report.aspx/GetEmployee", data: '{}', contentType: "application/json", dataType: "json" } ).then(function (response) { $scope.Reports = response.data; }); Json data retrieved : as response.data.d now how do perform ng-repeat ="report in reports", since data is not in response.data. I would appreaciate if someone could help me out with it. {"d" : "[ { "EmpId": 0, "EmpName": "Employee0", "Gender": "M", "Salary": 0.0, "HiredDate": "2015-02-17T00:00:00" }, { "EmpId": 1, "EmpName": "Employee1", "Gender": "F", "Salary": 1000.0, "HiredDate": "2015-02-17T00:00:00" }, { "EmpId": 2, "EmpName": "Employee2", "Gender": "M", "Salary": 2000.0, "HiredDate": "2015-02-17T00:00:00" }, { "EmpId": 3, "EmpName": "Employee3", "Gender": "F", "Salary": 3000.0, "HiredDate": "2015-02-17T00:00:00" }, { "EmpId": 4, "EmpName": "Employee4", "Gender": "M", "Salary": 4000.0, "HiredDate": "2015-02-17T00:00:00" } ]"}
Что я уже пробовал:
{{отчет.Empid в}}
Несмотря на то, что я знаю, что данные находятся в отчетах, есть d, в котором есть данные. но я не знаю, как его вернуть..