首页 >

织梦DedeCMS自定义模型采集数据

织梦DedeCMS自定义模型采集数据
对于新建的DedeCMS自定义模型,如何采集数据呢?

织梦DedeCMS自定义模型采集数据

打开\dede\templets\co_add_step0.htm,找到(大约在17行):

<?php

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

$dsql->Execute();

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

{

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

}

?>

假如你做的自定义模型的channelid=17,则改为:

<?php

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

$dsql->Execute();

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

{

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

}

?>

保存,然后在后台再写采集规则,第一步写列表页的采集规则的时候,和平时写文章模型的方法无异,到第二步写内容页的采集规则的时候,意外就出现了。自己试试吧。

注意:2DedeCMS_channeltype 中的2DedeCMS是你的数据库表前缀,修改成自己的表前缀即可。


织梦DedeCMS自定义模型采集数据
  • 站长别让织梦DedeCMS“会员”毁了你的站
  • 站长别让织梦DedeCMS“会员”毁了你的站 | 站长别让织梦DedeCMS“会员”毁了你的站 ...

    织梦DedeCMS自定义模型采集数据
  • 织梦DedeCMS调用相关文章修改 让内容更丰富
  • 织梦DedeCMS调用相关文章修改 让内容更丰富 | 织梦DedeCMS调用相关文章修改 让内容更丰富 ...

    织梦DedeCMS自定义模型采集数据
  • 织梦DedeCMSarclist标签当前文章高亮方法
  • 织梦DedeCMSarclist标签当前文章高亮方法 | 织梦DedeCMSarclist标签当前文章高亮方法 ...