GetJSON检查空数据

时间:2013-01-13 04:47:13

标签: c# jquery asp.net-mvc

我正在使用MVC c#我有一个

的对象
public class Person
{
        public int TypeId { get; set; }
        public string Code { get; set; }

}

我有一个代码为这个对象重新生成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");
}
}

1 个答案:

答案 0 :(得分:0)

你能检查一下你知道Person对象会有的属性吗?像这样:

if (data.Id) {
  // We got back something with an Id property... probably a Person
} else {
  // What else could we get back?!?
}