這篇文章主要為大家展示了“Bootstrap-table常見(jiàn)分頁(yè)問(wèn)題有哪些”,內(nèi)容簡(jiǎn)而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“Bootstrap-table常見(jiàn)分頁(yè)問(wèn)題有哪些”這篇文章吧。
創(chuàng)新互聯(lián)公司主要從事成都做網(wǎng)站、成都網(wǎng)站建設(shè)、網(wǎng)頁(yè)設(shè)計(jì)、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)臨汾,10余年網(wǎng)站建設(shè)經(jīng)驗(yàn),價(jià)格優(yōu)惠、服務(wù)專業(yè),歡迎來(lái)電咨詢建站服務(wù):18980820575問(wèn)題1 :服務(wù)器端取不到form值,querystring沒(méi)有問(wèn)題,但是request.form取不到值
解決:這是ajax的問(wèn)題,原代碼使用原生的ajax。 1可以用讀流文件解決。2 如果想用request.form 方式,設(shè)置 contentType: "application/x-www-form-urlencoded",
$('#tableList').bootstrapTable({method: 'post',url: "",height: $(window).height() - 200,striped: true,dataType: "json",pagination: true,"queryParamsType": "limit",singleSelect: false,contentType: "application/x-www-form-urlencoded",
問(wèn)題2: 設(shè)置傳遞到服務(wù)器的參數(shù)
方法:
function queryParams(params) {return {pageSize: params.limit,pageNumber: params.pageNumber,UserName: 4};} $('#tableList').bootstrapTable({method: 'post',url: "",height: $(window).height() - 200,striped: true,dataType: "json",pagination: true, queryParams: queryParams,
問(wèn)題3: 后臺(tái)取不到 pageSize 信息
解決:
1、在queryParams中設(shè)置
2、在bootstrap-table.minjs文件 修改源文件為"limit"===this.options.queryParamsType&&(e={limit:e.pageSize,pageNumber:e.pageNumber,
修改 bootstrap-table.js 也可以
if (this.options.queryParamsType === 'limit') {params = {search: params.searchText,sort: params.sortName,order: params.sortOrder};if (this.options.pagination) {params.limit = this.options.pageSize;params.pageNumber=this.options.pageNumber,params.offset = this.options.pageSize * (this.options.pageNumber - 1);}}
3、配置加入 "queryParamsType": "limit",
完整:
<script type="text/javascript">$(document).ready(function() { $('#tableList').bootstrapTable({method: 'post',url: "getcompapylist",height: $(window).height() - 200,striped: true,dataType: "json",pagination: true,"queryParamsType": "limit",singleSelect: false,contentType: "application/x-www-form-urlencoded",pageSize: 10,pageNumber:1,search: false, //不顯示 搜索框showColumns: false, //不顯示下拉框(選擇顯示的列)sidePagination: "server", //服務(wù)端請(qǐng)求queryParams: queryParams,//minimunCountColumns: 2,responseHandler: responseHandler,columns: [{field: 'CompanyId',checkbox: true}{field: 'qq',title: 'qq',width: 100,align: 'center',valign: 'middle',sortable: false},{field: 'companyName',title: '姓名',width: 100,align: 'center',valign: 'middle',sortable: false}]});});function responseHandler(res) {if (res.IsOk) {var result = b64.decode(res.ResultValue);var resultStr = $.parseJSON(result);return {"rows": resultStr.Items,"total": resultStr.TotalItems};} else {return {"rows": [],"total": 0};}}//傳遞的參數(shù)function queryParams(params) {return {pageSize: params.limit,pageNumber: params.pageNumber,UserName: 4};}</script>
問(wèn)題4:分頁(yè)后,重新搜索的問(wèn)題
前提:自定義搜索且有分頁(yè)功能,比如搜索產(chǎn)品名的功能.
現(xiàn)象:當(dāng)搜索充氣娃娃的時(shí)候返回100條記錄,翻到第五頁(yè). 這時(shí)候搜索按摩棒,數(shù)據(jù)有200條,結(jié)果應(yīng)該是第一頁(yè)的記錄,但是實(shí)際顯示的還是第五頁(yè)的結(jié)果. 也就是重新搜索后,pagenumber沒(méi)有變.
解決:重新設(shè)置option就行了.
function search(){ $('#tableList').bootstrapTable({pageNumber:1,pageSize:10});}
以上是“Bootstrap-table常見(jiàn)分頁(yè)問(wèn)題有哪些”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!
文章名稱:Bootstrap-table常見(jiàn)分頁(yè)問(wèn)題有哪些-創(chuàng)新互聯(lián)
分享URL:http://aaarwkj.com/article6/coccog.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供軟件開(kāi)發(fā)、品牌網(wǎng)站制作、網(wǎng)站收錄、標(biāo)簽優(yōu)化、小程序開(kāi)發(fā)、定制開(kāi)發(fā)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容