您好,登錄后才能下訂單哦!
這篇文章主要介紹“js怎么實(shí)現(xiàn)嵌套數(shù)組重排序”的相關(guān)知識(shí),小編通過實(shí)際案例向大家展示操作過程,操作方法簡單快捷,實(shí)用性強(qiáng),希望這篇“js怎么實(shí)現(xiàn)嵌套數(shù)組重排序”文章能幫助大家解決問題。
總共遇到兩個(gè)問題:
1、JS中for循環(huán)輸出同一變量值的問題
js事件處理器在線程空閑事件不會(huì)運(yùn)行,導(dǎo)致最后運(yùn)行的時(shí)候輸出的都是i最后的值。
解決方法:在循環(huán)中聲明 this.content1 = {}
2、排序算法在序號(hào)到10以后出錯(cuò)
解決方法:沒注意string和int,原數(shù)據(jù)為string
原數(shù)據(jù):
目標(biāo):將table、text、image合并到一個(gè)content里面,并按blockNO排序
代碼:
<script> export default { data() { return { data: [], content1: {} } }, created() { this.test() }, methods: { async test() { const { data: res } = await this.$http.get('test1') for (let i = 0; i < res.length; i++) { this.data1 = {} this.data1.name = res[i].name this.data1.blockNO = res[i].blockNO this.data1.class = res[i].class this.data1.id = res[i].id this.data1.children = [] this.data1.content = [] if (res[i].text) { for (let j = 0; j < res[i].text.length; j++) { this.content1 = {} this.content1.blockNO = res[i].text[j].blockNO this.content1.type = 'text' this.content1.detail = res[i].text[j].text this.data1.content.push(this.content1) } } if (res[i].table) { for (let j = 0; j < res[i].table.length; j++) { this.content1 = {} this.content1.blockNO = res[i].table[j].blockNO this.content1.type = 'table' this.content1.detail = res[i].table[j].table this.data1.content.push(this.content1) } } if (res[i].image) { for (let j = 0; j < res[i].image.length; j++) { this.content1 = {} this.content1.blockNO = res[i].image[j].blockNO this.content1.type = 'image' this.content1.detail = res[i].image[j].image this.data1.content.push(this.content1) } } for (let j = 1; j < this.data1.content.length; j++) { for (let i = 0; i < this.data1.content.length - j; i++) { if ( parseInt(this.data1.content[i].blockNO) > parseInt(this.data1.content[i + 1].blockNO) ) { let tempnum = this.data1.content[i + 1] this.data1.content[i + 1] = this.data1.content[i] this.data1.content[i] = tempnum } } } this.data.push(this.data1) } console.log(this.data) } } } </script>
關(guān)于“js怎么實(shí)現(xiàn)嵌套數(shù)組重排序”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí),可以關(guān)注億速云行業(yè)資訊頻道,小編每天都會(huì)為大家更新不同的知識(shí)點(diǎn)。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。