これを回避するには、カスタム検証ルール
を定義します。 typesオブジェクトを介して。具体的には、カスタムのsize
を定義することで、特定の問題を解決できます。 常にtrueを返すバリデーター。
// api/models/player.js
module.exports = {
types: {
size: function() {
return true;
}
},
attributes: {
username: {
type: 'string',
unique: true,
minLength: 4,
maxLength: 32,
size: 32,
required: true
}
}
}