首页 > CMS > 织梦DEDE > 正文

织梦dedecms搜索页按频道模型显示不同模板实现办法

2024-07-12 08:47:48
字体:
来源:转载
供稿:网友
这篇文章主要为大家详细介绍了织梦dedecms搜索页按频道模型显示不同模板实现办法,具有一定的参考价值,感兴趣的小伙伴们可以参考一下,有需要的朋友可以收藏方便以后借鉴。

“织梦dedecms搜索页按频道模型显示不同模板实现办法”,首先感谢“马背上的何燕”网友给361源码提出的这个问题,这个问题给了我们一个很好的思考方向,这也是361源码愿意花点时间给大家介绍的原因。下面是361源码的一个实现思路。大家可以参考

思路:

给搜索框加一个判定,例如搜索软件模型的时候显示一个模板,搜索文章模型的时候显示一个模板。

1、 在head区域加入 

<script language="javascript" type="text/javascript">   <!–   function check(){    if(document.formsearch.channeltype.value=http://www.vevb.com/="3")    document.formsearch.action="{dede:field name='phpurl'/}/search_images.php"    else    document.formsearch.action="{dede:field name='phpurl'/}/search.php"    }   –>  </script>

2 、更改搜索代码

<form  name="formsearch" action="" *****ubmit="check();">          <div class="form">             <input type="hidden" name="kwtype" value=http://www.vevb.com/"0" />             <input name="q" type="text" class="search-keyword" id="search-keyword" value=http://www.vevb.com/"{dede:global name='keyword' function='RemoveXSS(@me)'/}" />         <select name="channeltype" id="channeltype" >      <option value='http://www.vevb.com/1′ selected='1′>新闻</option>          <option value='http://www.vevb.com/3′>软件</option>             </select>            <button type="submit" class="search-submit">搜索</button>         </div>     </form>

其中重点就是

<select name="channeltype" id="channeltype" >    <option value='http://www.vevb.com/1′ selected='1′>新闻</option>    <option value='http://www.vevb.com/3′>软件</option></select>

这里设置的按游戏模型搜索  1是文章模型3是软件模型

3 复制serach.PHP 更名为search_images.php 

4 打开search_images.php

 require_once(DEDEINC."/arc.searchview.class.php");

更改为

 require_once(DEDEINC."/arc.searchimg.class.php");

5复制arc.searchview.class.php 更名为arc.searchimg.class.php 

6 打开arc.searchimg.class.php

 修改

$tempfile = $GLOBALS['cfg_basedir'].$GLOBALS['cfg_templets_dir']."/".$GLOBALS['cfg_df_style']."/search.htm";
$tempfile = $GLOBALS['cfg_basedir'].$GLOBALS['cfg_templets_dir']."/".$GLOBALS['cfg_df_style']."/search_images.htm";

核心的修改已经结束了,剩下的就是在search_images.htm这个模板里自由发挥了。

同理也可以实现按栏目type搜索显示不同风格的结果页得。

上面实现的思路大家应该能看得懂,其他的自己自由处理,尤其是模板这块,大家可以自由发挥。


以上就是织梦dedecms搜索页按频道模型显示不同模板实现办法的全部内容,希望对大家的学习和解决疑问有所帮助,也希望大家多多支持武林网。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表