联系官方销售客服

1835022288

028-61286886

开发框架 版主:迅睿框架研发组
自定义搜索模版不跳转对应自定义模版
类型:迅睿CMS 更新时间:2023-08-14 17:08:16 module=MOD_DIR 搜索结果 return=rs


自定义搜索模版不跳转对应自定义模版,还是默认search.html模版,搜索结果不是指定栏目下的数据

    <form action="/index.php?s=fxinghao&c=search&catid=76" method="get">

      <input name="xinghao" id="SearchStr1" type="text" placeholder="请输入型号">
      <input name="pinpai" id="SearchStr2" type="text" placeholder="请输入品牌">
      <input type="hidden" name="s" value="fxinghao">
      <input type="hidden" name="c" value="search">
      <input type="submit" value="查询">
      
    </form>
{search module=MOD_DIR id=$searchid total=$sototal order=$params.order catid=107 pagesize=100 urlrule=$urlrule page=1 return=rs}
        <tr style="height:14.25pt;" class="ue-table-interlace-color-double">
            <td class="et2 selectTdClass" style="border-width: 1px; border-style: solid; border-color: rgb(221, 221, 221);" width="303" align="center" valign="middle">
               <a href="{$rs.url}"> {$rs.xinghao}</a>
            </td>
            <td class="et2 selectTdClass" style="word-break: break-all; border-width: 1px; border-style: solid; border-color: rgb(221, 221, 221);" width="194" align="center" valign="middle">
                <span class="font0"><a href="{$rs.url}"><a href="{$rs.url}">{$rs.pinpai}</a></span>
            </td>
        </tr>{/search}



image


回帖
  • #1楼    迅睿框架创始人
    2023-08-14 12:00:12
    Google Pixel 手机 0
    1、开启开发者模式,做模板阶段必开2、在模板里面增加代码
      </tr>{/search}
    后面加一句{$debug_rs}3、访问这个搜索页面4、复制给我搜索的url5、复制给我看debug信息结果
  • 智云谷模板网
    #2楼    智云谷模板网
    2023-08-14 12:27:31
    Chrome 0
    回复迅睿框架创始人
    /index.php?xinghao=&pinpai=&leixing=&neijing=1&waijing=&houdu=&s=fxinghao&c=search
    我上面写法是否正确?
  • #3楼    迅睿框架创始人
    2023-08-14 12:31:46
    Google Pixel 手机 0
    这个地址不对,需要加上你图片一里面的栏目编号
    /index.php?xinghao=&pinpai=&leixing=&neijing=1&waijing=&houdu=&s=fxinghao&c=search&catid=图一的栏目号
  • 智云谷模板网
    #4楼    智云谷模板网
    2023-08-14 16:09:02
    Chrome 0
    回复迅睿框架创始人 大佬,这个栏目号怎么添加上去
  • #5楼    迅睿框架创始人
    2023-08-14 16:11:49
    Google Pixel 手机 0
    😓 复制粘贴进去啊
  • 智云谷模板网
    #6楼    智云谷模板网
    2023-08-14 16:29:20
    Chrome 0
    回复迅睿框架创始人
    https://www.xxxxxx.com/index.php?xinghao=&pinpai=&leixing=&neijing=1&waijing=&houdu=&s=fxinghao&c=search&catid=107
    测试了下,手动在网址上加个&catid=107属于正常的,既可以调用自定义搜索模版,又可以调用指定栏目107下的数据那么粘贴到哪个位置&catid=107,可以搜索时自动出现https://www.xxxxxx.com/index.php?xinghao=&pinpai=&leixing=&neijing=1&waijing=&houdu=&s=fxinghao&c=search&catid=107
  • 芝麻通
    #7楼    芝麻通
    2023-08-14 17:05:17
    Chrome 0
    <input type="hidden" name="catid" value="107">加个参数,传递下id
    满意答案
  • 智云谷模板网
    #8楼    智云谷模板网
    2023-08-14 17:08:16
    Chrome 0
    @芝麻通:缺少个catid参数