Có cách nào để ánh xạ quan hệ giữa các mô hình trong Sails.js không?Sails.js - Ánh xạ một đến nhiều
Dưới đây là những gì tôi muốn:
Video.js:
module.exports = {
attributes: {
filename: 'STRING',
length: 'INTEGER',
watchCount: 'INTEGER',
extension: 'STRING'
user: // I wan to reference to my User.js model
}
};
Và trong User.js tôi:
module.exports = {
attributes: {
username: {
type: 'email',
required: true
},
password: 'STRING',
videos: // I would like to have an array of videos after querying a user
}
};