thinkphp模板使用问题
程序员文章站
2024-01-13 17:00:52
...
在thinkphp里面结合使用smarty模板,都已经配置好了,在IndexAction.class.php文件里面使用$this->display("login")没有问题,但是另外一个文件DefaultAction.class.php文件里面同样使用,则出现以下问题:
Fatal error: Call to a member function display() on a non-object in E:\php\AppServ\www\DLP\ThinkPHP\Lib\Think\Core\Action.class.php on line 103
其中Action.class.php那边的代码是:
protected function display($templateFile='',$charset='',$contentType='text/html')
{echo $templateFile;
if(false === $templateFile) {
$this->showTrace();
}else{
$this->view->display($templateFile,$charset,$contentType);
}
}
有没有出现过同样问题的大哥,给个帮助...
Fatal error: Call to a member function display() on a non-object in E:\php\AppServ\www\DLP\ThinkPHP\Lib\Think\Core\Action.class.php on line 103
其中Action.class.php那边的代码是:
protected function display($templateFile='',$charset='',$contentType='text/html')
{echo $templateFile;
if(false === $templateFile) {
$this->showTrace();
}else{
$this->view->display($templateFile,$charset,$contentType);
}
}
有没有出现过同样问题的大哥,给个帮助...
回复讨论(解决方案)
应该是 DefaultAction.class.php 这个文件的问题,你看下它的类名以及继承类名是否正确
应该不是tp里的错误,而是你控器中哪个display引用出了问题,好好检查一下。
我也出现过,因为Action用了构造函数
function __construct()
{
//content
}
在TP中要用
function __construct()
{
parent::__construct;
}
我也出现过,因为Action用了构造函数
function __construct()
{
//content
}
在TP中要用
function __construct()
{
parent::__construct;
}
正解
下一篇: php的代码输出问
推荐阅读
-
Android 中TextView的使用imageview被压缩问题解决办法
-
请教一下thinkphp模板使用函数的有关问题
-
调用使用链接服务器的mssql存储过程遇到的有关问题
-
解决在Oracle数据库中使用hibernate生成表不能正确创建表的问题
-
thinkphp lock 锁 的使用和例子
-
mybatis中使用Integer类型的参数
判断问题 -
apache - 使用thinkphp框架,runtimes/logs 下为什么会莫名产生error_log.php文件?
-
thinkphp S函数使用phpredis出现问题
-
matlab使用imshow时,遇到的问题
-
matlab使用imshow时,遇到的问题