Home > Backend Development > PHP Tutorial > thinkphp里volist不显示?

thinkphp里volist不显示?

WBOY
Release: 2016-06-23 13:58:35
Original
1295 people have browsed it

function userLIst() {
$user=M('user');
  $list=$user->field(array('uname','leixing','zhiwu','tel','email','company','website'))->select();
echo "e";
if ($list != null && $list != "") {
    $this->assign('alist',$list);
$this->success ("成功",U('Inviation/list'));
dump($list);
$this->display ();
}
===============================

  • 姓名
    {$vo.uname}
  • 类型{$vo.leixing}职务{$vo['zhiwu']}电话{$vo['tel']}邮箱{$vo['email']}
    单位名称{$vo['company']}个人博客{$vo['website']}


    回复讨论(解决方案)

    首先确定$list有内容,然后tpl里面user文件夹下模板名称是否为userlist.html

    $list有内容。那个模板名必须和方法名一样么?

    $list有内容。那个模板名必须和方法名一样么?

    你要是想用其他的在$this->display (‘你的文件名’);在括号里写上你的文件名,不要扩展名,比如abc.html 你只要写$this->display (‘abc’);

    不一定,但既然你缺省了,那就必须一样了

    我html里volist吧那有警告说Unkown tag(volist),我在想是不是在html里忘了引什么?

    版主。。。能加QQ聊么?

    TP不是有个 foreach 的标签么?多么贴近的标签名啊 呵呵 都差不多一样的东西 用 foreach试试 另外看看你的 数组是否有内容

    首先你得先确定你的display是否对应了这个模版,先随便assign一个值进去看能不能显示出来
    如果显示不出来,那就是你模板文件的位置和名字有问题了
    目测代码没有问题,应该就是位置和display(文件名)的问题了

    Related labels:
    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 Tutorials
    More>
    Latest Downloads
    More>
    Web Effects
    Website Source Code
    Website Materials
    Front End Template