我目前有两个集合,分别是Schools
和Contacts
。 Schools
集合已经填充了数千个数据,而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);
我也尝试过这些解决方案但没有运气;
我在这里遗漏了什么吗?任何建议都表示赞赏..
答案 0 :(得分:2)
您的代码很好,它会将schools
附加到contacts
。
在sails console
中,运行此:
Contacts.find(contactId).populateAll().exec(console.log);
如果打印联系人以及填充的学校阵列,数据将保留在DB中。它可能位于一个单独的集合中,而不是位于MongoDB中的Contacts
内。
PS:pipeline
定义在defaultTo
中有拼写错误(应为defaultsTo
)