2013-08-22 56 views
10

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 

    } 

}; 

Trả lời

22

Bạn có thể sử dụng các hiệp hội trong sailsJs bây giờ bằng cách sử dụng các chi nhánh v0.10 https://stackoverflow.com/a/21822843/1585332
Các bản đồ sẽ là một cái gì đó như thế này ..

Video.js

module.exports = { 

    attributes: { 

    filename: 'STRING', 
    length: 'INTEGER', 
    watchCount: 'INTEGER', 
    extension: 'STRING' 
    user:{ 
     model: "user" 
    } 
    } 

}; 

User.js

module.exports = { 

    attributes: { 

    username: { 
     type: 'email', 
     required: true 
    }, 
    password: 'STRING', 
    videos:{ 
     collection: "video", 
     via: "user" 
    }, 

    } 

};