Sails将数据创建为多对多关系

时间:2017-01-18 07:09:58

标签: node.js mongodb sails.js waterline sails-mongo

我目前有两个集合,分别是SchoolsContactsSchools集合已经填充了数千个数据,而Contacts是一个仍然为空的新集合。

现在两者都有架构变化。这是架构细节:

// ----------- Schools.js
module.exports = {
  attributes: {
    user: {
      model: 'users'
      // Của User đã tạo
    },

    essential: {
      type: 'string'
      // Lưu toàn bộ thông tin của essential
    },

    contacts: {
      collection: 'contacts',
      via: 'schools'
    },

    pipeline: {
        type: 'string',
        defaultTo: ""
    },

    status: {
      type: 'integer',
      defaultsTo: 1
      // 0: un-active, 1: active
    }
  }
};

// ----------- Contacts.js

module.exports = {
    attributes: {
        title: {
            type: 'string'
        },

        firstName: {
            type: 'string'
        },

        lastName: {
            type: 'string'
        },

        email: {
            type: 'string'
        },

        position: {
            type: 'string'
        },

        landlinePhone: {
            type: 'string'
        },

        mobilePhone: {
            type: 'string'
        },

        externalCompany: {
            type: 'string'
        },

        schools : {
            collection: 'schools',
            via: 'contacts',
            dominant: true
        },

        user: {
            model: 'users'
        },

        activities: {
            collection: 'activities',
            via: 'contact'
        },

        status: {
            type: 'integer',
            defaultsTo: 1
            // 0: remove, 1: active, 2: unactive
        }
    }
};

创建新联系人时,这是我的代码:

Contacts.create(contactData).exec(function (e1, newContact) {
    if (e1) {
      console.log("e1 ::: ", e1);
    };

    // newContact is filled with contact new data..
    console.log("Contact data has been created", newContact, schoolId);

    // Adding schools to newContact (schoolId has a value here);
    newContact.schools.add(schoolId);

    // Save
    newContact.save(function (err) { console.log('err', err) });
});

但是,当我检查我的数据库时,contacts已创建,但没有schools属性。相关的schools也仍然没有contacts属性。

我尝试了以下内容;

newContact.schools.add([schoolId]);
// or --
newContact.schools.add(schoolObj);
// or --
newContact.schools.add([schoolObj]);

我试图在这两个集合之间切换dominant属性,并执行相反的执行,

school.contacts.add(newContact);

我也尝试过这些解决方案但没有运气;

我在这里遗漏了什么吗?任何建议都表示赞赏..

1 个答案:

答案 0 :(得分:2)

您的代码很好,它会将schools附加到contacts

sails console中,运行此:

Contacts.find(contactId).populateAll().exec(console.log);

如果打印联系人以及填充的学校阵列,数据将保留在DB中。它可能位于一个单独的集合中,而不是位于MongoDB中的Contacts内。

PS:pipeline定义在defaultTo中有拼写错误(应为defaultsTo