您现在的位置是:首页 > 教程 > dedecms教程dedecms教程
织梦cms更新列表页提示Fatal error: Call to a member function Get
问兰2023-09-25 13:06:53dedecms教程已有人查阅
导读今天在做一个站时用到了自定义模型,遇到了些问题,在更新列表页时提示:
Fatal error: Call to a member function Get
今天在做一个站时用到了自定义模型,遇到了些问题,在更新列表页时提示:
编辑打开 /inculde/taglib/channel/img.lib.php
找到51行所在的代码,将其替换为
然后列表页就正常了。
源代码:
Fatal error: Call to a member function GetInnerText() on a non-object in E:\www\include\taglib\channel\img.lib.php on line 51
这个错误提示会在更新自定义模型栏目列表的时候出现,修复此问题方法很简单。编辑打开 /inculde/taglib/channel/img.lib.php
找到51行所在的代码,将其替换为
$innerTmp = ($arcTag=="") ? trim($arcTag) : trim($arcTag->GetInnerText());
保存即可。然后列表页就正常了。
源代码:
<?php
if(!defined('DEDEINC'))
{
exit( "Request Error!");
}
/**
* 图像标签
*
* @version $Id:img.lib.php 1 9:33 2010年7月8日Z tianya $
* @package DedeCMS.Taglib
* @copyright Copyright (c) 2007 - 2010, DesDev, Inc.
* @license http://help.dedecms.com/usersguide/license.html
* @link http://www.dedecms.com
*/
function ch_img($fvalue,&$arcTag,&$refObj,$fname='')
{
global $cfg_album_width,$cfg_album_row,$cfg_album_col,$cfg_album_pagesize,$cfg_album_style,$cfg_album_ddwidth,$cfg_basehost,$cfg_multi_site;
$dtp = new DedeTagParse();
$dtp- >LoadSource($fvalue);
if(!is_array($dtp- >CTags))
{
$dtp- >Clear();
return "无图片信息!";
}
$pagestyle = $cfg_album_style;
$maxwidth = $cfg_album_width;
$ddmaxwidth = $cfg_album_ddwidth;
$pagepicnum = $cfg_album_pagesize;
$row = $cfg_album_row;
$icol = $cfg_album_col;
$ptag = $dtp- >GetTag('pagestyle');
if(is_object($ptag))
{
$pagestyle = $ptag- >GetAtt('value');
$maxwidth = $ptag- >GetAtt('maxwidth');
$ddmaxwidth = $ptag- >GetAtt('ddmaxwidth');
$pagepicnum = $ptag- >GetAtt('pagepicnum');
$irow = $ptag- >GetAtt('row');
$icol = $ptag- >GetAtt('col');
if(emptyempty($maxwidth))
{
$maxwidth = $cfg_album_width;
}
}
//遍历图片信息
$mrow = 0;
$mcol = 0;
$images = array();
$innerTmp = $arcTag- >GetInnerText();
if(trim($innerTmp)=='')
{
$innerTmp = GetSysTemplets( "channel_article_image.htm");
}
if($pagestyle==1)
{
$pagesize = $pagepicnum;
}
else if($pagestyle==2)
{
$pagesize = 1;
}
else
{
$pagesize = $irow * $icol;
}
if(is_object($arcTag) && $arcTag->GetAtt('pagesize') > 0)
{
$pagesize = $arcTag- >GetAtt('pagesize');
}
if(emptyempty($pagesize))
{
$pagesize = 12;
}
$aid = $refObj- >ArcID;
$row = $refObj- >dsql->GetOne("SELECT title FROM `ddmx_archives` WHERE `id` = '$aid';");
$title = $row['title'];
$revalue = '';
$GLOBAL['photoid'] = 0;
foreach($dtp- >CTags as $ctag)
{
if($ctag- >GetName()=="img")
{
$fields = $ctag- >CAttribute->Items;
$fields['text'] = str_replace( "'","",$ctag->GetAtt('text'));
$fields['title'] = $title;
$fields['imgsrc'] = trim($ctag- >GetInnerText());
$fields['imgsrctrue'] = $fields['imgsrc'];
if(emptyempty($fields['ddimg']))
{
$fields['ddimg'] = $fields['imgsrc'];
}
if($cfg_multi_site=='Y')
{
//$cfg_basehost)
if( !preg_match('#^http:#i', $fields['imgsrc']) ) {
$fields['imgsrc'] = $cfg_basehost.$fields['imgsrc'];
}
if( !preg_match('#^http:#i', $fields['ddimg']) ) {
$fields['ddimg'] = $cfg_basehost.$fields['ddimg'];
}
}
if(emptyempty($fields['width']))
{
$fields['width'] = $maxwidth;
}
//if($fields['text']=='')
//{
//$fields['text'] = '图片'.($GLOBAL['photoid']+1);
/
本文标签:
很赞哦! ()
相关文章
随机图文
-
dedecms搜索结果列表页调用自定义字段的方法
关于在dedecms搜索结果列表页调用自定义字段的方法比较多有些教程都写得比较含糊,经过织梦者的测试今天推荐一个比较有效的方法给大家 -
dede织梦友情链接标签flink的介绍和使用说明
织梦DedeCMS的友情链接标签flink用于获取友情链接,其对应后台文件为"include/taglibflink.lib.php"。 -
dedecms搬家dede_purview错误数据库导入失败的解决办法
今天把服务器上面的织梦网站打包回本地重现的时候,数据库导入老是不成功,总是提示dede_purview表有问题,百度了一下找到答案,并顺利解决。代码号小编在这里做个记录 -
织梦内容页模板制作添加评论版块的方法
织梦内容页模板制作时如果要添加评论模块,很简单,方法如下:1、在添加评论的位置用{dede:include filename='ajaxfeedback.htm'
留言与评论 (共有 条评论) |