萬盛學電腦網

 萬盛學電腦網 >> 服務器教程 >> MongoDB學習筆記(三) 在MVC模式下通過Jqgrid表格操作MongoDB數據

MongoDB學習筆記(三) 在MVC模式下通過Jqgrid表格操作MongoDB數據

下面我們將逐步講解怎麼在MVC模式下將MongoDB數據讀取,並展示在前台Jqgrid表格上。這個“簡易系 統”的基本設計思想是這樣的:我們在視圖層展示表格,Jqgrid相關Js邏輯全部放在一個Js文件中,控制層實現了“增刪查改”四個業 務,MongoDB的基本數據訪問放在了模型層實現  

看到下圖,是通過Jqgrid實現表格數據的基本增刪查改的操作。表格數據增刪改是一般企業應用系統開發的常見功能,不過不同的是這個表格數據來源是非關 系型的數據庫MongoDB。nosql雖然概念新穎,但是MongoDB基本應用實現起來還是比較輕松的,甚至代碼比基本的ADO.net訪問關系數據 源還要簡潔。由於其本身的“非關系”的數據存儲方式,使得對象關系映射這個環節對於MongoDB來講顯得毫無意義,因此我們也不會對MongoDB引入 所謂的“ORM”框架。

下面我們將逐步講解怎麼在MVC模式下將MongoDB數據讀取,並展示在前台Jqgrid表格上。這個“簡易系統”的基本設計思想是這樣的:我們 在視圖層展示表格,Jqgrid相關Js邏輯全部放在一個Js文件中,控制層實現了“增刪查改”四個業務,MongoDB的基本數據訪問放在了模型層實 現。下面我們一步步實現。

一、實現視圖層Jqgrid表格邏輯

  首先,我們新建一個MVC空白項目,添加好jQuery、jQueryUI、Jqgrid的前端框架代碼:
然後在Views的Home文件夾下新建視圖“Index.aspx”,在視圖的body標簽中添加如下HTML代碼:

復制代碼 代碼如下:
<div>
    <table id="table1">
    </table>
    <div id="div1">
    </div>
</div>

接著新建ScriptsHome文件夾,在該目錄新建“Index.js”文件,並再視圖中引用,代碼如下:

復制代碼 代碼如下:
jQuery(document).ready(function () {

    //jqGrid初始化
    jQuery("#table1").jqGrid({
        url: '/Home/UserList',
        datatype: 'json',
        mtype: 'POST',
        colNames: ['登錄名', '姓名', '年齡', '手機號', '郵箱地址', '操作'],
        colModel: [
             { name: 'UserId', index: 'UserId', width: 180, editable: true },
             { name: 'UserName', index: 'UserName', width: 200, editable: true },
             { name: 'Age', index: 'Age', width: 150, editable: true },
             { name: 'Tel', index: 'Tel', width: 150, editable: true },
             { name: 'Email', index: 'Email', width: 150, editable: true },
             { name: 'Edit', index: 'Edit', width: 150, editable: false, align: 'center' }
             ],
        pager: '#div1',
        postData: {},
        rowNum: 5,
        rowList: [5, 10, 20],
        sortable: true,
        caption: '用戶信息管理',
        hidegrid: false,
        rownumbers: true,
        viewrecords: true
    }).navGrid('#div1', { edit: false, add: false, del: false })
            .navButtonAdd('#div1', {
                caption: "編輯",
                buttonicon: "ui-icon-add",
                onClickButton: function () {
                    var id = $("#table1").getGridParam("selrow");
                    if (id == null) {
                        alert("請選擇行!");
                        return;
                    }
                    if (id == "newId") return;
                    $("#table1").editRow(id);
                    $("#table1").find("#" + id + "_UserId").attr("readonly","readOnly");
                    $("#table1").setCell(id, "Edit", "<input id='Button1' type='button' value='提交' onclick='Update("" + id + "")' /><input id='Button2' type='button' value='取消' onclick='Cancel("" + id + "")' />");
                }
            }).navButtonAdd('#div1', {
                caption: "刪除",
                buttonicon: "ui-icon-del",
                onClickButton: function () {
                    var id = $("#table1").getGridParam("selrow");
                    if (id == null) {
                        alert("請選擇行!");
                        return;
                    }
                    Delete(id);
                }
            }).navButtonAdd('#div1', {
                caption: "新增",
   
copyright © 萬盛學電腦網 all rights reserved