找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 1026|回复: 0

[分享] 织梦多个栏目arclist调用副栏目不显示的解决办法

[复制链接]
发表于 2018-7-26 08:53:08 | 显示全部楼层 |阅读模式 来自 中国–河南–新乡
织梦arclist调用副栏目不显示的解决办法:

打开/include/taglib/arclist.lib.php,代码约位于295-296行,查找以下两行代码:
  1. if($CrossID=='') $orwheres[] = ' arc.typeid IN ('.GetSonIds($typeid).')';
  2. else $orwheres[] = ' arc.typeid IN ('.GetSonIds($typeid).','.$CrossID.')';
复制代码

  将其替换成以下代码:
      
  1. $vicewheres = "";        
  2.                     $typeids = explode(",",GetSonIds($typeid));        
  3.                     $crossids = explode(",",$CrossID);        
  4.                     $typeidss = array_merge($typeids,$crossids);        
  5.                     $typeidss = array_unique($typeidss);        
  6.                     foreach($typeidss as $tid){        
  7.                         $liketypeid2 = ",".$tid.",";        
  8.                         $vicewheres.= " or CONCAT(',',arc.typeid2,',') like '%$liketypeid2%' ";        
  9.                     }        
  10.                     if($CrossID==''){        
  11.                         if($vicewheres!="")        
  12.                             $orwheres[] = ' (arc.typeid in ('.GetSonIds($typeid).') '.$vicewheres.') ';        
  13.                         else        
  14.                             $orwheres[] = ' arc.typeid in ('.GetSonIds($typeid).') ';        
  15.                     }else{        
  16.                         if($vicewheres!="")        
  17.                             $orwheres[] = ' (arc.typeid in ('.GetSonIds($typeid).','.$CrossID.') '.$vicewheres.') ';        
  18.                         else        
  19.                             $orwheres[] = ' arc.typeid in ('.GetSonIds($typeid).','.$CrossID.') ';        
  20.                     }   
复制代码

这种办法可以解决typeid="2"的情况下不显示副栏目的问题, 如果typeid=“2,3,8”,有多个栏目需要调用副栏目就不行了  怎么解决这个问题,找到262行, $orwheres[] = " arc.typeid IN ($typeid) "; 直接替换为:
  1. $vicewheres = "";        
  2.                foreach($typeid as $tid){        
  3.                 $liketypeid2 = ",".$tid.",";        
  4.                    $vicewheres.= " or CONCAT(',',arc.typeid2,',') like '%$liketypeid2%' ";        
  5.                }        
  6.             if($vicewheres!="")        
  7.                 $orwheres[] = " (arc.typeid in ($typeid) $vicewheres) ";        
  8.             else        
  9.                 $orwheres[] = " arc.typeid in ($typeid) ";   
复制代码

问题产生的原因,看下arclist.lib.php原始代码:( typeid为主栏目id, typeid2为副栏目id)
    找到246行:
      //指定了多个栏目时,不再获取子类的id       if( preg_match('#,#', $typeid) )    //如果typeid字段匹配逗号, 就是说typeid调用多个栏目,例如:
  1. typeid=“2,3,8”
  2.              {
  3.                 //指定了getall属性或主页模板例外
  4.                 if($getall==1 || empty($refObj->Fields['typeid']))
  5.                 {
  6.                     $typeids = explode(',', $typeid);
  7.                     foreach($typeids as $ttid) {
  8.                         $typeidss[] = GetSonIds($ttid);
  9.                     }
  10.                     $typeidStr = join(',', $typeidss);
  11.                     $typeidss = explode(',', $typeidStr);
  12.                     $typeidssok = array_unique($typeidss);
  13.                     $typeid = join(',', $typeidssok);
  14.                 }

  15.                 $orwheres[] = " arc.typeid IN ($typeid)";  //导致typeid='2,3,8'情况下不能调用副栏目问题产生的地方
  16.             }
  17.             else   //如果typeid不匹配逗号,就是调用一个栏目 例如 typeid="2"
  18.             {
  19.                //处理交叉栏目
  20.                 $CrossID = '';
  21.                 if($ctag->GetAtt('cross')=='1')
  22.                 {
  23.                     $arr = $dsql->GetOne("SELECT `id`,`topid`,`cross`,`crossid`,`ispart`,`typename` FROM `dede_arctype` WHERE id='$typeid' ");
  24.                     if( $arr['cross']==0 || ( $arr['cross']==2 && trim($arr['crossid']=='') ) )
  25.                     {
  26.                         $orwheres[] = ' arc.typeid IN ('.GetSonIds($typeid).')';
  27.                   }
  28.                     else
  29.                     {
  30.                         $selquery = '';
  31.                         if($arr['cross']==1) {
  32.                             $selquery = "SELECT id,topid FROM `dede_arctype` WHERE typename LIKE '{$arr['typename']}' AND id<>'{$typeid}' AND topid<>'{$typeid}'  ";
  33.                         }
  34.                         else {
  35.                             $arr['crossid'] = preg_replace('#[^0-9,]#', '', trim($arr['crossid']));
  36.                             if($arr['crossid']!='') $selquery = "SELECT id,topid FROM `dede_arctype` WHERE id IN('{$arr['crossid']}') AND id<>'{$typeid}' AND topid<>'{$typeid}'  ";
  37.                         }
  38.                         if($selquery!='')
  39.                         {
  40.                             $dsql->SetQuery($selquery);
  41.                             $dsql->Execute();
  42.                             while($arr = $dsql->GetArray())
  43.                             {
  44.                                 $CrossID .= ($CrossID=='' ? $arr['id'] : ','.$arr['id']);
  45.                             }
  46.                         }
  47.                     }
  48.                 }
  49.                 if($CrossID=='') $orwheres[] = ' arc.typeid IN ('.GetSonIds($typeid).')';
  50.                 else $orwheres[] = ' arc.typeid IN ('.GetSonIds($typeid).','.$CrossID.')'; //导致typeid='2'情况下不能调用副栏目问题产生的地方
  51.             }
复制代码

发帖求助前要善用【论坛搜索】功能,那里可能会有你要找的答案;

如何回报帮助你解决问题的坛友,好办法就是点击帖子下方的评分按钮给对方加【金币】不会扣除自己的积分,做一个热心并受欢迎的人!

▶专业解决各类DiscuzX疑难杂症、discuz版本升级 、网站搬家 和 云服务器销售!▶有偿服务QQ 860855665 更多精品应用
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则 需要先绑定手机号

关闭

站长推荐上一条 /1 下一条

QQ|侵权投诉|广告报价|手机版|小黑屋|西部数码代理|飘仙建站论坛 ( 豫ICP备2022021143号-1 )

GMT+8, 2025-1-31 17:02 , Processed in 0.034449 second(s), 9 queries , Redis On.

Powered by Discuz! X3.5

© 2001-2025 Discuz! Team.

快速回复 返回顶部 返回列表