blog/content/posts/2023-10-06/index.md

1.0 KiB

author draft categories date tags keywords title relpermalink url decription
usbharu false
技術
2023-10-06T12:05:47+09:00
OpenAPI
Kotlin
SpringBoot
Mustache
OpenAPI
Kotlin
SpringBoot
Mustache
OpenAPI Generatorで使われてるmustacheで配列のindexを得る posts/2023-10-06/ posts/2023-10-06/ OpenAPI Generatorで使われてるmustacheで配列のindexを得る

ハゲそうになったので誰かの役に立ったらとここに書いておく

-indexを使う

{{#list}}
{{-index}}
{{/list}}

OpenAPI Generator で使われているのは mustache.java ではない

OpenAPI Generator で使われているのは mustache.java ではありません。 なので拡張記法として有名なものは使用できません。

使用されているのは jmustache というもので一部に独自の記法が存在します。

配列等で index を得るには-index を使う

https://github.com/samskivert/jmustache#-index

ここに書いてあるとおりです。