gpt4 book ai didi

Mongoose Schema 安全字段

转载 作者:行者123 更新时间:2023-12-04 03:04:47 25 4
gpt4 key购买 nike

简明扼要:有什么方法可以防止设置模式字段但允许获取值?

我一直在 Mongoose Documentation但找不到我要找的东西。

最佳答案

将该字段定义为 virtual getter 而不是传统的字段。

例如,假设您想制作 pop通过 Mongoose 访问时,您的集合的字段为只读:

var schema = new Schema({
city: String,
state: String
});

schema.virtual('pop').get(function() {
return this._doc.pop;
});

通过访问私有(private) _doc您的模型实例的成员,将来可能会中断,但是当我刚刚测试它时效果很好。

关于Mongoose Schema 安全字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13555180/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com