thinkphp3.1.3中widget用法

今天搞了tp3.1的widget,继承了widget类,但是老是掉用错误,所以换种写法,直接继承action

TestAction.class.php

1 $this->display();//调用模板
2 
3 Group/Home/Widget/TestWidget.class.php
4 
5 class TestWidget extends Action{
6 public function hello($name=”){
7 echo (“hello,”.$name.”!”);
8 }
9 }

 

在模板文件中,调用该挂件

<?php

A(‘Test’,‘Widget’)->hello(‘world’);

?>

 

搞不懂手册上的{:W(‘Cate/Menu‘)},没有显示。所以琢磨了以上做法。R方法感觉也有点问题,所以用A代替。

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。