私は現在、Schools
とContacts
の2つのコレクションを持っています。 Schools
コレクションには既に1000個のデータが格納されていますが、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]);
私はそれらの2つの収集の間dominant
属性を切り替えしようとしたと実行を行ってきましたが、私はこれらのソリューションなしlucksをも試してみた
school.contacts.add(newContact);
、のような逆転。
- http://sailsjs.com/documentation/concepts/models-and-orm/associations/many-to-many
- Sails.js How to insert data into a join table (Many to Many)
defaultTo
のタイプミスがあります。ご回答有難うございます.. –