91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何實現Bootstrap Table 查詢

發布時間:2020-07-09 14:58:47 來源:億速云 閱讀:317 作者:Leah 欄目:web開發

這期內容當中小編將會給大家帶來有關如何實現Bootstrap Table 查詢,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

一個功能齊全且用戶體驗良好的表格,查詢功能都是并不可少的,因為表格的數據量有時可能相當龐大,這時候如果需要查找一個特定的數據,那將是十分龐大的工作量。下面我們就為大家介紹一下如何使用bootstrap table插件來實現查詢功能。

實現查詢思路:

1.定義一個局左的Toolbar包含 新建、保存和新建的按鈕

2.定義一個局右的QueryForm 包含查詢條件 和 查詢清除按鈕

3.定義一個Table

實現效果如下:

如何實現Bootstrap Table 查詢

代碼如下

<div class="container-fluid">

    <div>
        <div id="toolbar-btn" class="btn-group pull-left" style="padding-bottom:10px;">
            <button id="btn_add" οnclick="createFunction()" type="button" class="btn btn-primary btn-space">
                <span class="fa fa-plus-square" aria-hidden="true" class="btn-icon-space"></span>
                <@spring.message "fnd.new"/>
            </button>
            <button id="btn_save" οnclick="saveFunction()" type="button" class="btn btn-success btn-space">
                <span class="fa fa-save" aria-hidden="true" class="btn-icon-space"></span>
                <@spring.message "fnd.save"/>
            </button>
            <button id="btn_delete" οnclick="deleteFunction()" type="button" class="btn btn-danger btn-space">
                <span class="fa fa-trash-o" aria-hidden="true" class="btn-icon-space"></span>
                <@spring.message "fnd.delete"/>
            </button>
        </div>

        <div class="pull-right" id="query-form" style="padding-bottom:10px;">
            <input name="lookupType" placeholder='<@spring.message "fnd.lookup_type"/>' type="text"
                   style="float:left;width:150px;margin-right:5px;" v-model="lookupType"
                   class="form-control">
            <div style="float:left;margin-right:5px;">
                <input name="description" placeholder='<@spring.message "fnd.description"/>' type="text"
                       style="float:left;width:150px;margin-right:5px;" v-model="description"
                       class="form-control">
            </div>

            <div class="btn-group">
                <button id="btn_search" οnclick="customSearch()" type="button" class="btn btn-primary btn-space">
                    <span class="fa fa-search" aria-hidden="true" class="btn-icon-space"></span>
                    <@spring.message "fnd.query"/>
                </button>
                <button id="btn_reset" οnclick="resetSearch()" type="button" class="btn btn-default btn-space">
                    <span class="fa fa-eraser" aria-hidden="true" class="btn-icon-space"></span>
                    <@spring.message "fnd.reset"/>
                </button>
            </div>

        </div>
    </div>


    <table id="table" class="table  table-condensed table-striped"></table>

</div>

查詢函數實現

實現思路:獲取查詢塊中所有的對象,動態存放在查詢返回的參數中

需要注意:

當查詢沒有值的之后,不能放入到查詢參數中,否則會把數據當做空來查詢,從而導致無法查詢到數據

function queryParams(params) {
    var param = {};
    $('#query-form').find('[name]').each(function () {
        var value = $(this).val();
        if (value != '') {
            param[$(this).attr('name')] = value;
        }
    });

    param['pageSize'] = params.limit;   //頁面大小
    param['pageNumber'] = params.offset;   //頁碼

    return param;
}

function customSearch(text) {
    $table.bootstrapTable('refresh');//刷新Table,Bootstrap Table 會自動執行重新查詢
}

重置函數的實現

實現思路:循環獲取query-form的控件,并把其值置空

function resetSearch() {
    $('#query-form').find('[name]').each(function () {
        $(this).val('');
    });
}

上述就是小編為大家分享的如何實現Bootstrap Table 查詢了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

永靖县| 通江县| 海盐县| 济源市| 垦利县| 成安县| 南部县| 徐闻县| 木里| 龙游县| 绥德县| 平阳县| 广灵县| 紫阳县| 新乐市| 中牟县| 军事| 突泉县| 哈尔滨市| 靖江市| 渭南市| 遵义市| 罗山县| 弥勒县| 湖南省| 北安市| 克什克腾旗| 赤水市| 阿拉善盟| 丹棱县| 定远县| 乐都县| 长葛市| 邮箱| 贵德县| 舞钢市| 黔西| 赤峰市| 青州市| 蓝田县| 峨山|