首页 >

织梦DedeCMS实现软件及分类信息采集的方法

知道织梦DedeCMS的自带的采集功能默认只能采集文章和图片,但的站是一个分类信息的站,如何分类信息的采集呢?
一直困扰着,但无意中看了dede/templets/co_add_step0.htm这个文件,看看有没有什么,因为采集的第一次选择类型就是这个织梦DedeCMS模板嘛。
看来看去没发现什么,最终看到这么一段代码:

织梦DedeCMS实现软件及分类信息采集的方法

<?php

$dsql->SetQuery(“Select id,typename From `dede_channeltype` where id in(1,2) order by id asc “);

$dsql->Execute();

while($row = $dsql->GetObject())

{

echo “id}’>{$row->typename}\r\n”;

}

?>

看了一下,1,2分类代表的是文章和图集,没有分类信息,于是报着试试看的心情把分类信息ID(-8)写在了后面,测试采集,
居然成功了.配置里面完完整整是分类信息的参数.太兴奋了,同理,软件的应该也一样,测试了一下,结果一点错都没有

<?php

$dsql->SetQuery(“Select id,typename From `dede_channeltype` where id in(1,2,3,-8) order by id asc “);

$dsql->Execute();

while($row = $dsql->GetObject())

{

echo “id}’>{$row->typename}\r\n”;

}

?>

好东西,不敢独享,现在发出来供大伙参考,或许能给你带来惊喜。



织梦DedeCMS实现软件及分类信息采集的方法
  • 织梦DedeCMS创建自定义字段
  • 织梦DedeCMS创建自定义字段 | 织梦DedeCMS创建自定义字段 ...

    织梦DedeCMS实现软件及分类信息采集的方法
  • 织梦DedeCMS 游客不能匿名软件投稿的搞定方式
  • 织梦DedeCMS 游客不能匿名软件投稿的搞定方式 | 织梦DedeCMS 游客不能匿名软件投稿的搞定方式 ...

    织梦DedeCMS实现软件及分类信息采集的方法
  • 织梦DedeCMS手机站自动生成首页index.html导致不更新解决办法
  • 织梦DedeCMS手机站自动生成首页index.html导致不更新解决办法 | 织梦DedeCMS手机站自动生成首页index.html导致不更新解决办法 ...