您好,登錄后才能下訂單哦!
這篇文章主要介紹了如何解決layui table返回值的多級嵌套問題,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
我在學(xué)習(xí)layui的過程中遇到了table返回值的問題,如果服務(wù)器端返回給你的數(shù)據(jù)是多級嵌套的話,那你在前臺是解析不了的,在table.js源碼中 它渲染數(shù)據(jù)是用了
data = res[options.response.dataName] || []
這個意味著它源碼不支持嵌套數(shù)據(jù)
舉個例子把 比如服務(wù)器端返回的數(shù)據(jù)中data>dataList>list
把這個數(shù)據(jù)返回給前段解析出來的是 res[data.dataList.list]類似這種的結(jié)構(gòu),當(dāng)然解析不了,所以我寫了一個方法處理返回的數(shù)據(jù)
function searchData(response,res,name){ var data = new Object(); var arr = response[name].split("/"), pre = arr[0]; data[pre] = res[pre]; for(var i = 1;i<arr.length;i++){ if(arr[i]){ var next = arr[i]; data[pre] = data[pre][next]; } }
然后再table.js中找到ajax下的success中 第一行寫
try{ countNameInfo = response.countName; dataNameInfo = response.dataName; //console.log(options.response) res.newcountName = searchData(response,res,“countName”); res.newdataName = searchData(response,res,“dataName”); }catch(err){ console.log(err.message); }
newcountName,newdataName在pullData中自己定義 之后讓
response.countName = countNameInfo; response.dataName = dataNameInfo;
最后在你table.render中的response中寫
countName: ‘你多級嵌套的節(jié)點值' //數(shù)據(jù)總數(shù)的字段名稱,默認(rèn):count ,dataName: ‘你多級嵌套的節(jié)點值' //數(shù)據(jù)列表的字段名稱,默認(rèn):data
以上面我寫的例子為例:‘data/dataList/list'
感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“如何解決layui table返回值的多級嵌套問題”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關(guān)注億速云行業(yè)資訊頻道,更多相關(guān)知識等著你來學(xué)習(xí)!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。