是否有任何工具可以从 YAML 生成 JavaScript 类?
我有一个大摇大摆的 YAML,我想生成如下所示的 javascript 模型:
'use strict';
function Product(name,description){
this.name = name;
this.description = description;
this.toString = function(){
return this.name+" : "+this.description;
}
}
使用大摇大摆的 YAML :
.
.
.
definitions:
product:
properties:
name:
type: string
description:
type: string
required:
- name
- description
.
.
.
您可以使用 Swagger Codegen 生成 JS API 客户端(带有模型)、其他语言的客户端(例如 Ruby、Typescript 等)、服务器存根(例如 NodeJS、Java Spring 等)和 API 文档。
鉴于您已经拥有 OpenAPI/Swagger 规范,您可以执行以下操作:
更新:2018 年 5 月,大约 50 名 Swagger Codegen 的顶级贡献者和模板创建者决定分叉 Swagger Codegen 以维护一个名为 OpenAPI Generator 的社区驱动版本。详情请参考问答