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.
オブジェクトのリストのプロパティの値を結合して表示することはできますか? 何かのようなもの:
{{ users|join(', ', username) }}
usersメソッドを持つオブジェクトはどこにありますかgetUsername()。追加の引数を取らないと思いますが、同様のことを達成するための回避策はありますか ? 他の何かを表しているjoinため、関数を使用できません...__toString()
users
getUsername()
join
__toString()
あなたが使用することができます..
{% set usernames = [] %} {% for user in users %} {% set usernames = usernames|merge([user.username]) %} {% endfor %} {{ usernames|join(', ') }}
しかし、最もきれいではありません。
それを行うために、いつでもカスタム小枝フィルターを作成できます。