织梦dedecms自定义模型提示:Call to a member fun

网站建设 2022-07-27 08:13www.1681989.com免费网站
dede模板自定义模型提示Call to a member function GetInnerText()怎么解决?推火专家给大家具体分析如下 一、问题 今天在做一个站时用到了自定义模型,遇到了些问题,在更新列表页时提示: Fatal error: Call to a member function GetInnerText() on a non-object E:cludetaglibchannelimg.lib.php on le 51 二、解决方法 这个错误会在更新自定义模 […]



dede模板自定义模型提示Call to a member function GetInnerText()怎么解决?推火专家给大家具体分析如下
 
一、问题
 
今天在做一个站时用到了自定义模型,遇到了些问题,在更新列表页时提示:
 
Fatal error: Call to a member function GetInnerText() on a non-object E:cludetaglibchannelimg.lib.php on le 51
 
二、解决方法
 
这个错误会在更新自定义模型栏目列表的时候出现,修复此问题方法很简单,编辑打开 cludetaglibchannelimg.lib.php,查找51行左右
  1. $nerTmp = $arcTag->GetInnerText();
将其替换为
  1. $nerTmp = ($arcTag=="") ? trim($arcTag) : trim($arcTag->GetInnerText());
  1. if($arcTag==""){
  2. $nerTmp = trim($arcTag);
  3. }
  4. else{
  5. $nerTmp = trim($arcTag->GetInnerText());
  6. }
然后就能正常更新列表页了,问题上解决。
 

Copyright © 2016-2025 www.1681989.com 推火网 版权所有 Power by