ケースを考えてみましょう:
validatedSchema = new schema({
id : "1454216545154",
name: { type: Number, validate: [
function(v){
return (this.id !== Server.LoggedIn.ID);
}, 'Don't try to change the name of another user!!!!'
]}
})
テスト用に完全なサーバーをまだセットアップしていませんが、計画段階にあります。
検証関数から兄弟要素にアクセスできますか?この場合は「id」変数と「external」変数ですか?もしそうなら、どのように?
ありがとうございました