Twig不显示带空格的String

时间:2017-11-03 16:52:18

标签: php html5 symfony twig

我的Twig有问题。

我有一个对象,其中包含一个类型为String的属性。字符串包含一些空格“”,(例如“Prueba Primera”),但在枝条视图中,当我显示文本时,视图仅显示“Prueba”,字符串的另一部分未显示。 这是我在php中的对象:

$informe->setTitulo("Prueba Primera");

这是我在twig中的代码:

<input type = "text" name = "titulo"  id = "titulo" class = "texto"   value = {{informe.titulo}} disabled/>

枝条只显示:“Prueba”

1 个答案:

答案 0 :(得分:4)

在树枝值周围添加",如下所示:

value="{{informe.titulo}}"