嗨,我在一个名为 data 的变量中返回了以下 JSON。
{"tblMaster":{"intMasterID":14,"intMasterRegionID":1,"intMasterDistrictID":1,"intMasterEduLevelID":2,"txtMasterName":"Kureme","txtMasterPreciseLocation":"bulinga","txtMasterPostalAddress":"bulinga},"txtproperty1":"null"}
我有一个使用 MasterBo 模型类生成的剃须刀页面。在那个 MasteBo 类中,我编写了以下代码
public class MasteBo
{
public tblMaster tblMaster { get; set; }
public string tproperty1 { get; set; }
}
剃刀页面代码
<div id="tabs-1">
<table>
<tr>
<td>Region:</td>
<td style="width:255px">
@Html.DropDownListFor(model => model.tblMaster.intMasterRegionID, (IEnumerable<SelectListItem>)ViewBag.intMasterRegionID, "--Select--", new { id = "tblMaster_intMasterRegionID",style="width:255px" })
</td><td> @Html.ValidationMessageFor(model => model.tblMaster.intMasterRegionID)</td>
</tr>
<tr>
<td>District:</td>
<td style="width:255px">
@Html.DropDownListFor(model => model.tblMaster.intMasterDistrictID, (IEnumerable<SelectListItem>)ViewBag.intMasterDistrictID, "--Select--")</td>
<td>@Html.ValidationMessageFor(model => model.tblMaster.intMasterDistrictID)</td>
</tr>
<tr>
<td>Education Level</td>
<td style="width:255px">
@Html.DropDownListFor(model => model.tblMaster.intMasterEduLevelID, (IEnumerable<SelectListItem>)ViewBag.MasterEducationalLevels, "--Select--") </td>
<td> @Html.ValidationMessageFor(model => model.tblMaster.intMasterEduLevelID)</td>
</tr>
<tr>
<td>Master Name:</td>
<td style="width:255px">
@Html.DropDownListFor(model => model.tblMaster.intMasterID, (IEnumerable<SelectListItem>)ViewBag.Masters, "--Select--")</td>
<td> @Html.ValidationMessageFor(model => model.tblMaster.txtMasterName)</td>
</tr>
<tr>
<td>Precise Location:</td>
<td>
@Html.EditorFor(model => model.tblMaster.txtMasterPreciseLocation)</td>
<td>@Html.ValidationMessageFor(model => model.tblMaster.txtMasterPreciseLocation)</td>
</tr>
<tr>
<td>Postal Address:</td>
<td>
@Html.TextAreaFor(model => model.tblMaster.txtMasterPostalAddress) </td>
<td>@Html.ValidationMessageFor(model => model.tblMaster.txtMasterPostalAddress)</td>
</tr>
<tr>
</table>
</div>
现在在完成 ajax 请求时,我需要如何将上述 Json 数据绑定到页面。