sailsjs beforeCreate没有被触发

我有一个非常基本的模型的空船0.9.8应用程序:

module.exports = { attributes: { nickname: 'string', encryptedPassword: 'string', beforeCreate: function(values, next){ values.encryptedPassword = "123"; next(); } } }; 

当我从控制台创build一个新的用户时,beforeCreate方法不被调用,因此没有创buildencryptedPassword。
我敢肯定,我在这里错过了一些东西,但无法find什么。 任何想法 ?