有没有办法指定Foxx.Model的可接受值?

像这样的东西将是理想的:

var ExampleModel = Foxx.Model.Extend({},
{
    attributes: {
        field: { type: "string", required: true, values: ['one', 'two'] }
    }
});


提前致谢。

最佳答案

自ArangoDB的最新版本以来,这是可能的。它具有integration of Joi into Foxx,因此您现在可以执行以下操作:

var Foxx = require("org/arangodb/foxx");
var joi = require("joi");

var ExampleModle = Foxx.Model.extend({
  schema: {
    field: joi.string().required().valid(['one', 'two'])
  }
});


有关更多信息,请参见documentation of Joi

10-07 16:02