如何 return array() in fluent-schema?

How to return array() in fluent-schema?

我有一个看起来像这样的对象:

interface LotteryData {
  PROP1: string;
  PROP2: string;
  PROP3: string;
  PROP4: string;
  PROP5: string;
}

interface LotterySuccess {
  name: string;
  data: Array<LotteryData>;
}

我的架构是这样的:

const successResponseSchema = S.object()
  .title('About 200 response')
  .description('Some description')
  .prop('name', S.string())
  .definition('data', S.array());

使用邮递员时,我取回了名称,但没有取回数据。

我也试过:

const successResponseSchema = S.object()
  .title('About 200 response')
  .description('Some description')
  .prop('name', S.string())
  .prop('data', S.anyOf([S.object()]));

这里的数据是空的,我明白这是因为我发回的数据是数组而不是对象。

处理请求的处理程序如下所示:

const handler = async (req, reply) => {
  const responseData = await fileManager();

  const response: LotterySuccess = {
    name: responseData.Name,
    data: responseData.Data,
  };

  reply.send(response);
};

export default (server: FastifyInstance) =>

  server.get<null>('/', opts, handler); 

responseData.Data 具有正确的值,但我无法调整我的成功模式以响应 一组对象。有什么想法吗?

其中一个找了几个小时,一旦您最终提出问题,您也会找到答案。

想保留这个问题,因为这不容易找到。 我通过反复试验弄清楚了这一点。

发现 this 有点帮助。

我的最终解决方案:

const successResponseSchema = S.object()
  .title('About 200 response')
  .description('Some description')
  .prop('name', S.string())
  .prop(
    'data',
    S.array().items(
      S.object()
        .prop('PROP1', S.string())
        .prop('PROP2', S.string())
    )
  );

老实说,我不觉得这是一个包罗万象的答案。我无法解释为什么它必须是这样的。如果有人能解释那部分,那就太好了。我希望将来能够用更多详细信息更新此答案。

编辑: @Manuel Spigolon 在评论中给出了一些建议。

以上更改为:

const successResponseSchema = S.object()
  .title('About 200 response')
  .description('Some description')
  .prop('name', S.string())
  .prop('data', S.array().items(S.object().additionalProperties(true)));

这样我就不必添加每个道具了。