pbootcms后台搜索只搜索标题title

Bootstrap模板

pbootcms后台搜索只搜索标题title

pbootcms后台搜索默认只搜索标题title

今天更新内容的时候,不小心犯了个错误,导致300多篇文章需要检索出来,唯一的区别在附件的字段里边,所有要改成搜索附件字段,记录一下怎么改,你可能用不到,主要是自用,用完还要改回去

\apps\admin\model\content\ContentModel.php

大约140行左右

在'a.title',下面增加
'a.enclosure',

往下看,找到

return parent::table('ay_content a')->field($fields)
->where("b.mcode='$mcode'")
->where('d.type=2 OR d.type is null ')
->where("a.acode='" . session('acode') . "'")
->like('a.title', $keyword)
->join($join)
->order('a.sorting ASC,a.id DESC')
->page()
->select();
}

改为

return parent::table('ay_content a')->field($fields)
->where("b.mcode='$mcode'")
->where('d.type=2 OR d.type is null ')
->where("a.acode='" . session('acode') . "'")
->like('a.enclosure', $keyword)
->join($join)
->order('a.sorting ASC,a.id DESC')
->page()
->select();
}

也许您对下面的内容还感兴趣: