0
我使用MVC C#我有的getJSON檢查空數據
public class Person
{
public int TypeId { get; set; }
public string Code { get; set; }
}
一個對象我有retruns JSON對象這個對象是這樣
return Json(personCodeStore.GetPersonCodes(id).Select(x=>new {text =x.Code, value =x.TypeId}), JsonRequestBehavior.AllowGet);
如何添加一個代碼指標到我的JSON返回數據,這樣我可以檢查空數據
$.getJSON('../PersonList?id=1', function (data) {
if (data==????)
{
alert("has data");
}
else
{
alert("is Empty");
}
}
我得到undefined –
那麼你希望得到什麼數據?您可以檢查哪些數據屬性? – jakerella
我不得不做 if(data [0] .Id){ //我們拿回了一些帶有Id屬性的東西......可能是一個人 } else { //我們還能回來什麼?!? } –