帆0.10&多对多关联 - 获取所有关联数据,而不是第一个

时间:2014-03-25 00:24:59

标签: node.js sails.js waterline

我有两个具有多对多关联的模型。我将这两个模型关联起来的代码运行良好(它创建了一个新的集合item_languages__language_items,里面有相应的文档)。但是我很难获得特定项目的所有相关数据(语言)。我使用的是MongoDB。

// Item.js
module.exports = {
    schema: true,
    autoPK: false,
    attributes: {
        uuid: {
            type: 'string',
            primaryKey: true,
            unique: true,
            required: true,
            uuidv4: true
        },
        languages: {
            collection: 'language',
            via: 'items',
            dominant: true
        }
    }
}

// Language.js
module.exports = {
    schema: true,
    autoPK: false,
    attributes: {
        code: {
            type: 'string',
            primaryKey: true,
            required: true,
            minLength: 2,
            maxLength: 2,
            unique: true
        },
        items: {
            collection: 'item',
            via: 'languages'
        }
    }
}

存储在item_languages__language_items集合中的数据:

/* 0 */
{
    "language_items" : "es",
    "item_languages" : "69e4f3a3-1247-4a06-ae2d-9df27ac9495b",
    "_id" : ObjectId("5330bcebf8e0b61509c771d5")
}

/* 1 */
{
    "language_items" : "fr",
    "item_languages" : "69e4f3a3-1247-4a06-ae2d-9df27ac9495b",
    "_id" : ObjectId("5330bd26f8e0b61509c771d6")
}

/* 2 */
{
    "language_items" : "en",
    "item_languages" : "69e4f3a3-1247-4a06-ae2d-9df27ac9495b",
    "_id" : ObjectId("5330bedcc076355b09da3ccd")
}

现在在我的ItemController.js中,我希望获得包含所有相关语言的特定项目:

Item
    .findOne({uuid: '69e4f3a3-1247-4a06-ae2d-9df27ac9495b'})
    .populate('languages')
    .exec(function (e, r) {
        console.log(r.toJSON());
    });

但是在这里,当我希望获得3种相关语言时,我只使用了一种相关语言。

1 个答案:

答案 0 :(得分:2)

这似乎是sails-mongo当前测试版实施中的一个错误,它使populate无法正常使用自定义键。请post this to the sails-mongo issues forum!与此同时,唯一的解决方案似乎是使用默认的MongoDB主键。