Home > php教程 > php手册 > thinkPHP的Html模板标签使用方法

thinkPHP的Html模板标签使用方法

WBOY
Release: 2016-06-13 11:56:19
Original
1013 people have browsed it

注意:在使用如等标签之前,必须要引入TP的标签库:

如果我们现在需要一个select下拉菜单项,那么在ThinkPHP中我们可以这样做。

1、在Action控制器的方法中获取数据,举例如下:

复制代码 代码如下:


public function mylist(){
$user = new Model(‘User');
$list = $user->getField(‘id,username');
$this->assign(‘users',$list);
$this->display();
}



2、在模板页面中导入标签库并写如下代码即可

复制代码 代码如下:






这样我们只用了一个简单的标签就实现了下面的功能:(编译后的HTML代码)

复制代码 代码如下:



source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template