问题
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