我在将对象值传递给我的twig模板时遇到问题。
以下是我的一些控制器代码,它显示了对象的内容:
if (!$request->isXmlHttpRequest()) {
$manejador = new Manejador();
$temas=new ArrayList();
$temas=$manejador->scrollingAjax();
return $this->render(
'UsuarioBundle:Default:index.html.twig',
array(
'temas'=>$temas));
}
这里是我的Arraylist代码。
class ArrayList {
private $list = array();
public function Add($obj)
{
....
}
public function Remove($key)
{
...
}
public function Size()
{
....
}
public function IsEmpty()
{
....
}
public function GetObj($key)
{
.....
}
public function GetKey($obj)
{
.....
}
}
以下是我的一些Tema类代码
class Tema {
private $texto;
private $titulo;
private $usuario;
private $fecha;
private $numeroRespuesta;
function getnumeroRespuesta(){
return $this->numeroRespuesta;
}
function getUsuario(){
return $this->usuario;
}
function getTitulo(){
return $this->titulo;
}
function getTexto(){
return $this->texto;
}
......
然后在我的树枝模板中,我想要显示' tema'但结果是空值
</thead>
<tbody id="cuerpo-tabla">
<tr>
{% for tema in temas %}
<th width="10%">{{ tema.fecha }}</th>
<th width="70%">{{ tema.titulo }}</th>
<th width="10%">{{ tema.usuario }}</th>
<th width="10%">{{ tema.numeroRespuesta }}</th>
{% endfor %}
</tr>
</tbody>
当我做var_dump($ temas)时,结果是:
object(people\UsuarioBundle\Modelo\Tema)[287]
private 'texto' => string '' (length=0)
private 'titulo' => string 'titulo1?' (length=37)
private 'usuario' => string 'PlayBackWow' (length=11)
private 'fecha' => string '21:27' (length=5)
private 'numeroRespuesta' => string '0' (length=1)
1 =>
object(people\UsuarioBundle\Modelo\Tema)[286]
private 'texto' => string '' (length=0)
private 'titulo' => string 'titulo2' (length=25)
private 'usuario' => string 'OsoMiltro' (length=9)
private 'fecha' => string '21:31' (length=5)
private 'numeroRespuesta' => string '0' (length=1)
2 =>
答案 0 :(得分:0)
您似乎正在尝试迭代$temas
变量,该变量是ArrayList
对象,没有公共属性。此外,预期的行为是迭代我认为的内部$list
属性。
要使ArrayList
对象在foreach上下文中可用,请尝试实现Traversable及其具体子接口。
更好的是,对于简单的要求,您可以:
array