私のコードは次のように実行されます。
$.ajax({
url: "api/WepAPI/",
dataType: 'json',
success: function (result) {
alert(result.length);
$.each(result, function (index, element) {
alert(element.StartDate);
});
},
});
反復中に、最初の要素の開始日が正しく表示され、他のすべての要素については、アラートで未定義のメッセージが返されます。
私のWEBAPIコントローラコードは次のようになります
public IEnumerable<Employees> GetAllEmployess()
{
EmpDataContainer context = new EmpDataContainer();
return context.Employees.AsEnumerable();
}
このエラーを整理するのを手伝ってください...