4

我正在使用 swagger-codegen 生成数据模型。模板

/// <summary>
/// {{^description}}Gets or Sets {{{name}}}{{/description}}{{#description}}{{description}}{{/description}}
/// </summary>{{#description}}
/// <value>{{description}}</value>{{/description}}
[JsonProperty("{{baseName}}")]
public {{{datatype}}} {{name}} { get; {{#isReadOnly}}private {{/isReadOnly}}set; }

生成

/// <summary>
/// Description of property.
/// </summary>
/// <value>Description of property.</value>
[JsonProperty("property_name")]
public String property_name { get; set; }

如何将property namesnake_case 的大小写更改为PascalCase?我想我必须对车把模板进行某种转换,{{name}}但我对车把模板不是很熟悉。

/// <summary>
/// Description of property.
/// </summary>
/// <value>Description of property.</value>
[JsonProperty("property_name")]
public String PropertyName { get; set; }
4

1 回答 1

1

我不知道 Swagger Codegen 中是否内置了任何东西,但是使用 handlebars.net,您可以注册一个助手来将字符串转换为 PascalCase:

Handlebars.RegisterHelper("PascalCase", (writer, context, parameters) => {
  // paramaters[0] should be name, convert it to PascalCase here
});

我的 c# 尘土飞扬,以至于我不记得是否有内置的 PascalCasing 字符串方式,但如果没有的话应该不会太难。

然后从您的模板中调用它:

public {{{datatype}}} {{PascalCase name}} ...

编辑:看起来Swagger Codegen在引擎盖下使用 jmustache,并且快速浏览一下,但我认为您可以使用 Lambdas 做类似的事情

于 2017-03-03T21:43:56.360 回答