首页 >

织梦DedeCMS自定义模型提示:Call to a member function GetInne

织梦DedeCMS自定义模型提示:Call to a member function GetInnerText()怎么解决?给大伙具体分析如下:

织梦DedeCMS自定义模型提示:Call to a member function GetInne

一 | 问题:

在做一个站时用到了自定义模型,遇到了些问题,在更新列表页时提示:

Fatal error: Call to a member function GetInnerText() on a non-object in E:wwwincludetaglibchannelimg.lib.php on line 51

二 | 解决方法:

这个错误会在更新自定义模型栏目列表的时候出现,修复此问题方法很简单,编辑打开 includetaglibchannelimg.lib.php,查找51行左右:

  1. $innerTmp = $arcTag->GetInnerText();

将其替换为:

  1. $innerTmp = ($arcTag==””) ? trim($arcTag) : trim($arcTag->GetInnerText());

  1. if($arcTag==””){
  2. $innerTmp = trim($arcTag);
  3. }
  4. else{
  5. $innerTmp = trim($arcTag->GetInnerText());
  6. }

然后就能正常更新列表页了,问题上解决。


织梦DedeCMS自定义模型提示:Call to a member function GetInne
  • 织梦DedeCMS搜索关键词调用的链接修改 改掉PLUS目录
  • 织梦DedeCMS搜索关键词调用的链接修改 改掉PLUS目录 | 织梦DedeCMS搜索关键词调用的链接修改 改掉PLUS目录 ...

    织梦DedeCMS自定义模型提示:Call to a member function GetInne
  • 织梦DedeCMS在发布文章时编辑框位置出现报错Call to undefined function织梦DedeCMS_htmlspecialchars()的搞定方式
  • 织梦DedeCMS在发布文章时编辑框位置出现报错Call to undefined function织梦DedeCMS_htmlspecialchars()的搞定方式 | 织梦DedeCMS在发布文章时编辑框位置出现报错Call to undefined function织梦DedeCMS_htmlspecialchars()的搞定方式 ...

    织梦DedeCMS自定义模型提示:Call to a member function GetInne
  • 织梦DedeCMS首页列表页调用文章内容
  • 织梦DedeCMS首页列表页调用文章内容 | 织梦DedeCMS首页列表页调用文章内容 ...