2

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

像这样的东西是理想的:

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

提前致谢。

4

1 回答 1

5

自 ArangoDB 的最后一个版本以来,这是可能的。它将Joi 集成到 Foxx中,因此您现在可以执行以下操作:

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

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

有关更多信息,请参阅Joi 的文档。

于 2014-07-21T11:47:29.727 回答