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

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

belongsToMany 與 Sequelize 關(guān)聯(lián)的限制

belongsToMany 與 Sequelize 關(guān)聯(lián)的限制

函數(shù)式編程 2022-12-08 15:31:09
我想知道,如何限制我的 belongsToMany 關(guān)系。我嘗試添加限制,但出現(xiàn)此錯(cuò)誤:"message": "只有 HasMany 關(guān)聯(lián)支持 include.separate",我有 2 個(gè)表:| peoples (id, code) | people-friends (fk_user_id, fk_friend_id) // fk_friend_id is an id from user我的請(qǐng)求 :    await db.People.findAll({    where: {    id: parent.dataValues.id,    },    include: [    {        model: db.People,        as: "Friends",        limit: 2, // <--- LIMIT    },    ],})人物模型:People.associate = (models) => {    // People relations    models.People.belongsToMany(models.People, {        as: "Friends",        through: models.PeopleFriend,        foreignKey: "fk_user_id",        otherKey: "fk_friend_id",    })}
查看完整描述

1 回答

?
哈士奇WWW

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

如果您希望某個(gè)用戶的朋友限制為 2 個(gè)朋友(哪些?您必須添加一個(gè)order選項(xiàng)),您可以查詢 PeopleFriend 包括 People 模型,如下所示:


await db.PeopleFriend.findAll({

    where: {

      fk_user_id: parent.dataValues.id

    },

    limit: 2, // <--- LIMIT

    order: [['Friend', 'name', 'asc']],

    include: [

    {

        model: db.People,

        as: "Friend",

    },

    {

        model: db.People,

        as: "User",

    },

    ],

})

不要忘記將來(lái)自 PeopleFriend 的關(guān)聯(lián)添加到兩個(gè) People 鏈接。


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

添加回答

舉報(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)