Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のようにスキーマを防御した後、スキーマプロパティのセッターを定義するにはどうすればよいですか
var User = new Schema({email:String})
emailそのプロパティのセッターを次のように定義するにはどうすればよいですか。
email
User.email.setter(function ...)
?
解決策を見つけました。カスタムプロパティは次のように設定できます
User.path("email", { set: function(email) { return email } })