我正在使用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");
}
}
答案 0 :(得分:0)
你能检查一下你知道Person对象会有的属性吗?像这样:
if (data.Id) {
// We got back something with an Id property... probably a Person
} else {
// What else could we get back?!?
}