[thinkphp] 公共头部底部如何传递数据

分组底下有一个公共模板文件夹 Modules/Index/Tpl/public/

如何传递数据给模板呢?

在  入口文件/Lib/Action/  中创建类CommonAction.class.php,添加自动执行方法 _initialize()

在方法中$this->username = 'aobama',

然后分组中的action继承CommonAction.class.php

这样就可以直接在模板中使用了

hello,{$username}

原文地址:https://www.cnblogs.com/bushe/p/4196397.html