我有一个 Open API 3 规范 yaml 文件,其中包含一些 x 前缀属性。我正在尝试使用 openapi-generator-cli 生成 Angular Typescript SDK。但是,当我在模板 mustache 中引用该属性时,带有 x 前缀的属性始终为空白。
来自 yaml 的示例端点(省略了不相关的内容):
/about:
get:
summary: Information about this API
x-foo: getAbout
我如何在 Mustache 模板中使用它(省略不相关的内容):
{{#operation}}
public {{x-foo}}({{#allParams}}{{paramName}}{{#hasMore}}, {{/hasMore}}{{/allParams}})
(基本上我正在尝试使用 x-foo 参数作为正在生成的 SDK 中的方法名称。)
但是,生成的 SDK 会替换{{x-foo}}
为空白:
public ()
这就是我调用生成器的方式(没有换行符):
openapi-generator generate
--generator-name typescript-angular
--template-dir ./path/to/templates
--input-spec ./path/to/api.yml
--output ./output
--config ./path/to/config.json
如何从 openapi-generator 模板中引用供应商扩展/以 x 为前缀的 Open API 3 属性?