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.
我正在使用 ArangoDb 2.7.1。我正在尝试实现一个“灵活”的 Foxx 模型,该模型将具有包含一些必需和可选属性的 Joi 模式。此外,我需要保留未在架构中定义的未知键。
Foxx 模型满足前两个,但在 model.save() 上添加“未知”(未在架构中定义)属性总是失败。
Joi 本身允许在其 validate() 方法(选项:allowUnknown)中忽略未知键,但我看不到如何为特定模型设置此标志。
Joi 允许使用options方法在模式本身上定义这些选项。
options
在 Foxx 中进行验证期间应遵守这些选项。