MVC新聞網(wǎng)站建立,完成詳情頁面的制作。
詳情就是點(diǎn)擊詳情后彈出一個(gè)div,所以需要現(xiàn)在boby里面先建立一個(gè)div
<div id="detailDiv"> <table> <tr> <td>標(biāo)題:</td> <td><input class="easyui-textbox" style="width:250px;height:32px" id="title"/></td> </tr> <tr> <td>作者:</td> <td><input class="easyui-textbox" style="width: 250px; height: 32px" id="author" /></td> </tr> <tr> <td>發(fā)布日期:</td> <td><input class="easyui-textbox" style="width: 250px; height: 32px" id="subDateTime" /></td> </tr> <tr> <td>內(nèi)容:</td> <td><input class="easyui-textbox" data-options="multiline:true" style="width: 400px; height: 250px" id="Msg" /></td> </tr> </table> </div>
這個(gè)div是需要隱藏的,當(dāng)點(diǎn)擊詳情再彈出來。(隱藏語句需要放在頁面加載的函數(shù)中)
//設(shè)置詳細(xì)框?yàn)椴豢梢?$("#detailDiv").css("display", "none");
在上一篇的datagrid里面我給詳情的超鏈接添加了一個(gè) onclick="showDetail('+row.Id+')" 事件 row.Id就是拿到點(diǎn)擊的新聞Id
現(xiàn)在就需要完善這個(gè)方法
//顯示新聞詳情 function showDetail(index) { //彈出div $("#detailDiv").css("display", "block"); $.post("/NewInfo/ShowModelById", { id: index }, function (data) { $("#title").textbox("setValue", data.Title); $("#author").textbox("setValue", data.Author); $("#subDateTime").textbox("setValue", ChangeDateFormat(data.SubDateTime)); $("#Msg").textbox("setValue", data.Msg); }); //彈出dialog $("#detailDiv").dialog({ title: "新聞詳情", modal: true, width: 500, height: 500, }); }
同樣的這里要根據(jù)Id查詢新聞信息
在DAL層的NewInfoDal中
/// <summary> /// 根據(jù)id查詢出記錄 /// </summary> /// <param name="id"></param> /// <returns></returns> public NewInfo GetEntityModel(int id) { string sql = "select * from T_News where Id=@Id"; DataTable da = SqlHelper.ExcuteDataTable(sql, CommandType.Text, new SqlParameter("@Id", id)); NewInfo newInfo = null; if (da.Rows.Count > 0) { newInfo = new NewInfo(); LoadEntity(da.Rows[0], newInfo); } return newInfo; }
在BLL層的NewInfoServices中
/// <summary> /// 根據(jù)id查詢記錄 /// </summary> /// <param name="id"></param> /// <returns></returns> public NewInfo GetEntityModel(int id) { return NewInfoDal.GetEntityModel(id); }
最后在NewInfo控制器下建立ShowModelById方法
/// <summary> /// 根據(jù)id查詢記錄 /// </summary> /// <returns></returns> public ActionResult ShowModelById() { int id = int.Parse(Request["id"]); NewInfo model = NewInfoBll.GetEntityModel(id); return Json(model, JsonRequestBehavior.AllowGet); }
聲明:本網(wǎng)頁內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com