使用版本 layui-v2.3.0
創(chuàng)新互聯(lián)公司是創(chuàng)新、創(chuàng)意、研發(fā)型一體的綜合型網(wǎng)站建設(shè)公司,自成立以來公司不斷探索創(chuàng)新,始終堅持為客戶提供滿意周到的服務(wù),在本地打下了良好的口碑,在過去的十年時間我們累計服務(wù)了上千家以及全國政企客戶,如成都房屋鑒定等企業(yè)單位,完善的項目管理流程,嚴(yán)格把控項目進度與質(zhì)量監(jiān)控加上過硬的技術(shù)實力獲得客戶的一致稱譽。
修改:
打開layui中table.js源碼
在 Class.prototype.pullData 這個方法定義內(nèi)部
//獲得數(shù)據(jù) Class.prototype.pullData = function(curr, loadIndex){ var that = this ,options = that.config ,request = options.request ,response = options.response ,sort = function(){ if(typeof options.initSort === 'object'){ that.sort(options.initSort.field, options.initSort.type); } }; that.startTime = new Date().getTime(); //渲染開始時間 if(options.url){ //Ajax請求 var params = {}; params[request.pageName] = curr; params[request.limitName] = options.limit; //參數(shù) var data = $.extend(params, options.where); if(options.contentType && options.contentType.indexOf("application/json") == 0){ //提交 json 格式 data = JSON.stringify(data); } $.ajax({ type: options.method || 'get' ,url: options.url ,contentType: options.contentType ,data: data ,dataType: 'json' ,headers: options.headers || {} ,success: function(res){ // 加入這部分!?。? // 臨時解決layui的table組件中response選項不支持多層級獲取接口數(shù)據(jù)的方法 // ----------------開始--------------------- if (typeof options.responseHandler == "function") { res = options.responseHandler(res); } // ----------------結(jié)束--------------------- if(res[response.statusName] != response.statusCode){ that.renderForm(); that.layMain.html('<div class="'+ NONE +'">'+ (res[response.msgName] || '返回的數(shù)據(jù)狀態(tài)異常') +'</div>'); } else { that.renderData(res, curr, res[response.countName]), sort(); options.time = (new Date().getTime() - that.startTime) + ' ms'; //耗時(接口請求+視圖渲染) } loadIndex && layer.close(loadIndex); typeof options.done === 'function' && options.done(res, curr, res[response.countName]); } ,error: function(e, m){ that.layMain.html('<div class="'+ NONE +'">數(shù)據(jù)接口請求異常</div>'); that.renderForm(); loadIndex && layer.close(loadIndex); } }); } else if(options.data && options.data.constructor === Array){ //已知數(shù)據(jù) var res = {} ,startLimit = curr*options.limit - options.limit res[response.dataName] = options.data.concat().splice(startLimit, options.limit); res[response.countName] = options.data.length; that.renderData(res, curr, options.data.length), sort(); typeof options.done === 'function' && options.done(res, curr, res[response.countName]); } };
使用:
在建立table的時候
加入
responseHandler: function (res) { // 可進行數(shù)據(jù)操作 return { "count": res.data.count, "data": res.data.companyList, "code": res.code == 200 ? 0 : -1 //code值為200表示成功 }; },
以上這篇解決layui中table異步數(shù)據(jù)請求不支持自定義返回數(shù)據(jù)格式的問題就是小編分享給大家的全部內(nèi)容了,希望能給大家一個參考,也希望大家多多支持創(chuàng)新互聯(lián)。
本文題目:解決layui中table異步數(shù)據(jù)請求不支持自定義返回數(shù)據(jù)格式的問題
本文地址:http://jinyejixie.com/article16/igodgg.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供品牌網(wǎng)站建設(shè)、ChatGPT、網(wǎng)站排名、網(wǎng)站制作、網(wǎng)站收錄、App開發(fā)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)