Home >Backend Development >PHP Tutorial >thinkPHP的Html模板标签使用方法_PHP

thinkPHP的Html模板标签使用方法_PHP

WBOY
WBOYOriginal
2016-06-01 12:09:20872browse

ThinkPHP

注意:在使用如等标签之前,必须要引入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代码)

复制代码 代码如下:

Statement:
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