テーブル内のデータ量が非常に大きくなる場合があるため、完全な関数と優れたユーザー エクスペリエンスを備えたテーブルの場合、クエリ関数は不可欠です。特定のデータを見つけるには、非常に大きな作業負荷がかかります。以下に、ブートストラップ テーブル プラグインを使用してクエリ機能を実装する方法を紹介します。
推奨チュートリアル: ブートストラップ ビデオ チュートリアル
実装クエリのアイデア:
1. ページの左側に、作成、保存、作成のボタンを含むツールバーを定義します。
##2. ページの右側に、クエリ条件とクエリを含むクエリフォームを定義します。クリア ボタン 3. テーブルの定義実装の効果は次のとおりです:
コードは次のとおりです。次のように<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 会自动执行重新查询 }
Reset 関数の実装
実装アイデア: ループ クエリ フォーム コントロールを取得し、その値を空白に設定します
function resetSearch() { $('#query-form').find('[name]').each(function () { $(this).val(''); }); }
以上がブートストラップ テーブル クエリの実装の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。