Bootstrap Table使用心得總結
之前一直在調研我們的管理后臺使用的表格控件,查詢到 : http://bootstrap-table.wenzhixin.net.cn的Bootstrap Table 感覺挺不錯,但是由于官方的文檔不是怎么的完善,導致自己的網(wǎng)絡數(shù)據(jù)請求一直沒有通過。
今天終于調試通過,在這里與大家分享一下。
一、相關的配置文件引入
<!-- jQuery文件。務必在bootstrap.min.js 之前引入 --> <script src="http://cdn.bootcss.com/jquery/1.11.3/jquery.min.js"></script> <link rel="stylesheet" > <script src="http://cdn.bootcss.com/bootstrap/3.3.5/js/bootstrap.min.js"></script> <!-- bootstrap table --> <link rel="stylesheet"> <script src="http://cdn.bootcss.com/bootstrap-table/1.11.0/bootstrap-table.min.js"></script> <script src="http://cdn.bootcss.com/bootstrap-table/1.11.0/bootstrap-table-locale-all.js"></script> <script src="http://cdn.bootcss.com/bootstrap-table/1.11.0/extensions/export/bootstrap-table-export.min.js"></script> <!-- bootstrap table 包含excel導出,pdf導出 --> <script src="https://rawgit.com/hhurz/tableExport.jquery.plugin/master/tableExport.js"></script> <script src="http://cdn.bootcss.com/FileSaver.js/2014-11-29/FileSaver.min.js"></script>
注意!!!!! 這里的 tableExport.js并不是 bootcdn上的tableExport,使用的時候注意看作者,不到會導致無法導出excel
二、編寫表頭和工具欄
其實整個表頭的編寫非常簡單,只需要簡單的幾個配置就好。
注意,把每一個bean的屬性書寫在th中
注意綁定工具欄
可以參考如下配置
<!-- 工具欄的按鈕,可以自定義事件 -->
<div id="toolbar" class="btn-group">
<button type="button" class="btn btn-default">
<i class="glyphicon glyphicon-plus"></i>
</button>
<button type="button" class="btn btn-default">
<i class="glyphicon glyphicon-heart"></i>
</button>
<button type="button" class="btn btn-default">
<i class="glyphicon glyphicon-trash"></i>
</button>
</div>
<table id="demo" class="table table-striped table-hover table-bordered"
data-toolbar="#toolbar" // 這里必須綁定工具欄,不然布局會錯亂
data-search="true"
data-show-refresh="true"
data-show-columns="true"
data-show-export="true"
data-export-types="['excel']"
data-export-options='{ // 導出的文件名
"fileName": "products",
"worksheetName": "products"
}'
>
<thead>
<tr>
<th width="3%" data-field="prodId">產(chǎn)品Id</th>
<th width="10%" data-field="nameOfProduct">產(chǎn)品名稱</th>
<th width="4%" data-field="categoryId">產(chǎn)品類別</th>
<th width="5%" data-field="domicileOfCapital">資本類型</th>
<th width="8%" data-field="underwriter">發(fā)行機構</th>
<th width="6%" data-field="managementInstitution">基金公司</th>
<th width="5%" data-field="managementInstitution2">管理機構</th>
<th width="3%" data-field="flag">角標</th>
<th width="7%" data-field="beginTime">上線時間</th>
<th width="7%" data-field="endTime">下線時間</th>
<th width="4%" data-field="status">發(fā)布狀態(tài)</th>
<th width="4%" data-field="fundRaisingStatus">募集狀態(tài)</th>
<th width="3%" data-field="totalScore">打分</th>
<th width="3%" data-field="modesOfGuaranteeScore">擔保</th>
<th width="3%" data-field="invsetmentTargetScore">投資</th>
<th width="3%" data-field="underwriterScore">發(fā)行</th>
<th width="3%" data-field="sourceOfPaymentScore">還款</th>
<th width="3%" data-field="issuerDescriptionScore">融資</th>
<th width="10%">操作</th>
</tr>
</thead>
</table>
三、綁定后端邏輯
因為,Bootstrap Table默認是使用了form表單的方式提交,其分頁參數(shù)與查詢參數(shù)都與我們的后端邏輯協(xié)議不一致。(官方就缺少這一部分的文檔)
所以,我們需要更具其協(xié)議做一個自定義的配置。
$(function() {
$("#demo").bootstrapTable({
url: "http://ydjr.dev.chengyiwm.com/goldman-mgr/listProduct",
sortName: "prodId", //排序列
striped: true, //條紋行
sidePagination: "server", //服務器分頁
clickToSelect: true, //選擇行即選擇checkbox
singleSelect: true, //僅允許單選
searchOnEnterKey: true, //ENTER鍵搜索
pagination: true, //啟用分頁
escape: true, //過濾危險字符
queryParams: getParams, //攜帶參數(shù)
method: "post", //請求格式
responseHandler: responseHandler,
});
});
/**
* 默認加載時攜帶參數(shù)
*
* 將自帶的param參數(shù)轉化到cy的請求邏輯協(xié)議
*/
function getParams(params) {
var query = $("#searchKey").val();
console.log(JSON.stringify(params));
return {
head: {
userId: "11154",
skey: "6FC19FCE5D8DCF130954D8AE2CADB30A",
platform: "pc",
imei: "",
appVersion: "",
cityId: "",
platformVersion: "",
deviceId: "",
channel: "",
protoVersion: 1,
isPreview: 2
},
body: {
'query': params.search, // 搜索參數(shù)
'start': params.offset, // 分頁開始位置
'pageSize': params.limit, //每頁多少條
}
}
}
/**
* 獲取返回的數(shù)據(jù)的時候做相應處理,讓bootstrap table認識我們的返回格式
* @param {Object} res
*/
function responseHandler(res) {
return {
"rows": res.body.listProduct, // 具體每一個bean的列表
"total": res.body.totalCount // 總共有多少條返回數(shù)據(jù)
}
}
Ok配置完成后給大家看看我們的顯示效果:

如果大家還想深入學習,可以點擊這里進行學習,再為大家附3個精彩的專題:
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家。
相關文章
淺談js使用in和hasOwnProperty獲取對象屬性的區(qū)別
下面小編就為大家?guī)硪黄獪\談js使用in和hasOwnProperty獲取對象屬性的區(qū)別。小編覺得挺不錯的,現(xiàn)在就分享給大家,也給大家做個參考。一起跟隨小編過來看看吧2017-04-04

