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

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

如何在 JavaScript 中動(dòng)態(tài)鏈接方法

如何在 JavaScript 中動(dòng)態(tài)鏈接方法

富國(guó)滬深 2022-12-22 11:57:55
我正在尋找用 Mongoose 填充文檔的各種路徑,但我找不到動(dòng)態(tài)鏈接各種填充方法的方法。一次性檢索所有這些字段對(duì)于提高性能非常重要。這是代碼:let fields = [path1, path2, ...]let result = document.findById(id).populate(path1).populate(path2).populate(...)你們有人知道這樣的巫術(shù)嗎?
查看完整描述

2 回答

?
眼眸繁星

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

const result = fields.reduce((r, path) => r.populate(path), document.findById(id));

或者更詳細(xì)一點(diǎn):


let result = document.findById(id);

for (let i = 0; i < fields.length; i++) {

    result = result.populate(fields[i]);

}


查看完整回答
反對(duì) 回復(fù) 2022-12-22
?
慕的地8271018

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

我不確定這是否是您要找的:


let query = document.findById(id)


for (const field of fields) {

  query = query.populate(field)

}


const result = await query

如果你想使用 ES6 .reduce():


const result = await fields.reduce((query, field) => query.populate(field), document.findById(id))

編輯:


從 mongoose v3.6 你也可以使用.populate(fields.join(' '))


查看完整回答
反對(duì) 回復(fù) 2022-12-22
  • 2 回答
  • 0 關(guān)注
  • 82 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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