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