如何循环遍历 Phalcon with.volt 文件中的多个模型
How to loop through multiple models in Phalcon with.volt files
我的项目中有3个模型,我需要遍历所有这些模型来显示3个表的内容。那么我想知道的是如何在 .volt 文件中显示一个有很多属于关系(sql 中的一个连接)?
通过您的模型传递到视图变量,然后在视图中:
{% for item in model.alias of related relation %}
do something with item
{% endfor %}
我的项目中有3个模型,我需要遍历所有这些模型来显示3个表的内容。那么我想知道的是如何在 .volt 文件中显示一个有很多属于关系(sql 中的一个连接)?
通过您的模型传递到视图变量,然后在视图中:
{% for item in model.alias of related relation %}
do something with item
{% endfor %}