最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to embed and write mongo objects in Sails.js (more than one level deep)? - Stack Overflow

programmeradmin1浏览0评论

From sails.js example,

// Person.js

   var Person = {
      attributes: {
        firstName: 'STRING',
        lastName: 'STRING',
        age: {
          type: 'INTEGER',
          max: 150,
          required: true
        }
        birthDate: 'DATE',
        phoneNumber: {
          type: 'STRING',
          defaultsTo: '111-222-3333'
        }
        emailAddress: {
          type: 'email', // Email type will get validated by the ORM
          required: true
        }
      }
    };

Now how would I add emailAddress to have a home and office as embedded fields?

Tried to do it this way:

emailAddress: {   {

                        work: {
                            type: 'email',
                        },
                        personal: {
                            type: 'email',
                        }
                  }
             },

and

emailAddress: {  
                     attributes: {

                        work: {
                            type: 'email',
                        },
                        personal: {
                            type: 'email',
                        }
                  }
             },

both don't work. I get errors such as "No Rules found for attributes" for the second case, "Unexpected token { " in the first case.

From sails.js example,

// Person.js

   var Person = {
      attributes: {
        firstName: 'STRING',
        lastName: 'STRING',
        age: {
          type: 'INTEGER',
          max: 150,
          required: true
        }
        birthDate: 'DATE',
        phoneNumber: {
          type: 'STRING',
          defaultsTo: '111-222-3333'
        }
        emailAddress: {
          type: 'email', // Email type will get validated by the ORM
          required: true
        }
      }
    };

Now how would I add emailAddress to have a home and office as embedded fields?

Tried to do it this way:

emailAddress: {   {

                        work: {
                            type: 'email',
                        },
                        personal: {
                            type: 'email',
                        }
                  }
             },

and

emailAddress: {  
                     attributes: {

                        work: {
                            type: 'email',
                        },
                        personal: {
                            type: 'email',
                        }
                  }
             },

both don't work. I get errors such as "No Rules found for attributes" for the second case, "Unexpected token { " in the first case.

Share Improve this question asked Jan 16, 2014 at 21:40 buntbunt 1811 silver badge8 bronze badges 1
  • You could use the type json at emailAddress definition inside Person, and then use injectors to manually validate the desired structure. This will probably be solved in the future by waterline, but until then this should cover your issue – HeberLZ Commented Apr 17, 2014 at 21:24
Add a ment  | 

2 Answers 2

Reset to default 10

Ok, Following through some threads on this. It seems Sails Waterline has no support for embedded MongoDB schema at this stage. You can write your own contribution or force it, but the out of box support (model validation) etc. need to be hacked too. https://github./balderdashy/sails-mongo/issues/44

The other option - sails-mongoose is unfortunately not supported too. From where can we decide collection name in use of "sails-mongoose" package, in node.js + sailsjs?

Update. Starting with V0.10, Sails is supporting associations. Perhaps that will make it work. Still experimental.

Update. With the associations functionality you can force a schema in different models and create references between them, but so far it doesn't seem like you'll be able to embed them - only relate them from different collections/tables.

https://github./balderdashy/sails-mongo/issues/44

It seems they already have it planned as a Feature Request.

发布评论

评论列表(0)

  1. 暂无评论