主頁(yè) > 網(wǎng)站建設(shè) > 建站知識(shí) > dedecms自定義模型提示:Call to a member function GetI

dedecms自定義模型提示:Call to a member function GetI

POST TIME:2021-05-19 22:13

本文實(shí)例講述了dedecms自定義模型提示:Call to a member function GetInnerText()的解決方法。分享給大家供大家參考。具體分析如下:

一、問題:

今天在做一個(gè)站時(shí)用到了自定義模型,遇到了些問題,在更新列表頁(yè)時(shí)提示:

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

二、解決方法:

這個(gè)錯(cuò)誤會(huì)在更新自定義模型欄目列表的時(shí)候出現(xiàn),修復(fù)此問題方法很簡(jiǎn)單,編輯打開 includetaglibchannelimg.lib.php,查找51行左右:

復(fù)制代碼代碼如下:$innerTmp = $arcTag->GetInnerText();將其替換為:

復(fù)制代碼代碼如下:$innerTmp = ($arcTag=="") ? trim($arcTag) : trim($arcTag->GetInnerText());

復(fù)制代碼代碼如下:if($arcTag==""){

$innerTmp = trim($arcTag);

}

else{

$innerTmp = trim($arcTag->GetInnerText());

}

然后就能正常更新列表頁(yè)了,問題上解決.

希望本文所述對(duì)大家的dedecms建站有所幫助。




收縮
  • 微信客服
  • 微信二維碼
  • 電話咨詢

  • 400-1100-266