Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
テンプレートで文字列のようなリストを表示するには?
Yeah!{{msg}}
出力例:
うん!['これを正常に変更しました!']
これを次のように表示する必要があります。
うん!これを正常に変更しました。
リストの最初の要素を使用します。
{{ msg.0 }}
リストに複数のアイテムが存在する場合は、それらをループすることですべてを表示できます。
{% for item in msg %} {{ item }} {% endfor %}