0

私は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");
}
}
4

1 に答える 1

0

Person オブジェクトが持っているとわかっているプロパティを確認していただけますか? このようなもの:

if (data.Id) {
  // We got back something with an Id property... probably a Person
} else {
  // What else could we get back?!?
}
于 2013-01-13T04:51:47.853 に答える