This article mainly introduces the method of ThinkPHP to implement volist tag nesting loop. Friends who need it can refer to it
This article explains the usage of ThinkPHP's volist tag nesting in more detail as follows:
First of all, in the Thinkphp development manual, there is an explanation about the nesting of
Tag nesting:
The template engine supports the multi-level nesting function of tags, and you can specify whether the tags in the tag library can be nested.
Among the built-in tags in the system, volist (and its alias iterate), switch, if, elseif, else, foreach, compare (including all comparison tags), (not) present, (not) empty, (not) defined Tags can be nested. For example:
<volist name="list" id="vo"> <volist name="vo['sub']" id="sub"> {$sub.name} </volist> </volist>
The above tag can be used to output double loops.
The default nesting level is 3 levels, so the nesting level cannot exceed 3 levels. If you need more levels, you can specify the TAG_NESTED_LEVEL configuration parameter.
But how exactly should "list" be assigned a value in Action? As can be seen from the description, list should be a two-dimensional array. Below is a test code that can be used after testing.
$Baojia=new Model('baojia'); $Class=new Model('class'); $parent=$Class->select(); foreach($parent as $n=> $val){ $parent[$n]['voo']=$Baojia->where('belongto=\''.$val['name'].'\'')->select(); } $this->assign('list',$parent); <volist name="list" id="vo"> {$vo.name}<BR> <volist name="vo['voo']" id="sub"> {$sub.name} </volist><BR> </volist>
Two tables are defined in the database, one is a quotation table and the other is a classification table. The function is to display the classification like a tree menu. Under each classification is the quotation of each model.
The main functions of the code are:
1. First create the model:
$Baojia=new Model('baojia'); $Class=new Model('class');
2. Then query the data in the classification. This step is very important, because we know that database query What is returned is data in a two-dimensional form similar to a table. When we take out a single piece of data, it is equivalent to reading each row of data. When calling
$parent=$Class->select();
Store the data in the quotation into $parent, where $n is the serial number of the $parent array, which is equivalent to the data table stored in $parent. Each row adds an index, which points to Quotes that fall into this category.
foreach($parent as $n=> $val){ $parent[$n]['voo']=$Baojia->where('belongto=\''.$val['name'].'\'')->select(); }
3. Finally:
$this->assign('list',$parent);
Display the output!
Through this program, you can have a deeper understanding of the
Through this analysis, the logic is very clear. N-fold loops can be achieved by drawing inferences from one example. Of course, if you need more levels, you can specify the TAG_NESTED_LEVEL configuration parameter.
In this case, multiple cycles such as country->province->city->county->township can be realized
Related recommendations:
How to use thinkPHP’s Html template tag
Example of the three-level linkage function of provinces and municipalities implemented by thinkPHP
ThinkPHP template judgment output Empty tag usage
The above is the detailed content of Thinkphp's volist tag nested loop use. For more information, please follow other related articles on the PHP Chinese website!