我是sails.js 的新手,发现了一些奇怪的东西。我创建了一个模型用户,例如:
sails generate api user
所以我可以访问:
http://localhost:1337/user/
和
http://localhost:1337/user/create?name=joe&test=true
但是为什么风帆允许我在模型中添加我想要的任何字段,例如:
http://localhost:1337/user/create?name=joe&test=true&toto=ok&titi=okToo
toto 和 okToo 不在我的模型下 api/model/User.js:attributs
如果有人可以帮助我理解这一点,我可能会错过一些东西。对我来说,sails.js 必须只保存我放在模型上的字段:属性文件或抛出异常