第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

vueJS 對(duì)嵌套表行進(jìn)行排序

vueJS 對(duì)嵌套表行進(jìn)行排序

慕娘9325324 2023-08-24 15:57:12
我有一個(gè)像這樣的 json 對(duì)象列表(載體):在我的 *.vue 中,我將其渲染為:<tr v-for="carrier in this.carriers">   <td>{{ carrier.id }}</td> ....可以單擊我的 thead / th's 對(duì)表進(jìn)行排序,如下所示:<thead>   <tr>      <th class="pointer link" @click="sort('id')">         ID         <span v-if="'id' === currentSortCol">            {{currentSortDir ==='asc' ? '&#8593;':'&#8595;'}}         </span>      </th>      <th class="pointer link" @click="sort('region.name')">         Region         <span v-if="'region.name' === currentSortCol">            {{currentSortDir ==='asc' ? '&#8593;':'&#8595;'}}         </span>      </th>....我的排序方法是這樣的:        sort(col) {            if (this.currentSortCol === col) {                this.currentSortDir = this.currentSortDir === "asc" ? "desc" : "asc";            } else {                this.currentSortCol = col;            }            this.carriers.sort(this.sortBy(col, this.currentSortDir));        },        sortBy(property, order) {            this.currnetSortDir=order;            return function(a, b) {                const varA =                    typeof a[property] === "string"                        ? a[property].toUpperCase()                        : a[property];                const varB =                    typeof b[property] === "string"                        ? b[property].toUpperCase()                        : b[property];                let comparison = 0;                if (varA > varB) comparison = 1;                else if (varA < varB) comparison = -1;                return order === "desc" ? comparison * -1 : comparison;            };        }問題: 排序 asc, desc 與 ID (Carrier.id) 配合良好。但它不會(huì)對(duì)嵌套的 Carrier.region.name 列進(jìn)行排序。如何對(duì)嵌套列進(jìn)行排序,例如載體.區(qū)域.名稱?
查看完整描述

1 回答

?
幕布斯7119047

TA貢獻(xiàn)1794條經(jīng)驗(yàn) 獲得超8個(gè)贊

您應(yīng)該使用包中的“get”方法lodash來(lái)獲取嵌套的道具:


import _get from 'lodash/get'

...

const propValueA = _get(a, property);

const propValueB = _get(b, property);

const varA = typeof propValueA === "string" ? propValueA.toUpperCase() : propValueA;

const varB = typeof propValueB === "string" ? propValueB.toUpperCase() : propValueB;


查看完整回答
反對(duì) 回復(fù) 2023-08-24
  • 1 回答
  • 0 關(guān)注
  • 203 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)