How to add space between variables in twig template?

夙愿已清 提交于 2019-12-13 09:39:55

问题


It's a pretty simple question, but I didn't find the answer yet.

This code:

{{ civilite }}{{ nom }}{{ prenom }}

Prints MRJOHSONBarry

I want to add space between the variables, how could I do it?


回答1:


If {{ civilite }} {{ nom }} {{ prenom }} doesn't work...

how about

{{ civilite }} {{ nom }} {{ prenom }}?



回答2:


I don't know if it's good but I simply use this. Tell me if I'm right :

{{ firstname }}{{ " " }}{{ lastname }}



回答3:


you can use

{{ civilite~" "~nom~" "~prenom  }}


来源:https://stackoverflow.com/questions/40365322/how-to-add-space-between-variables-in-twig-template

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!