Search类用于对模块内容的搜索,开发者可以对其进行重写继承,以便适用于自己项目的二次开发。
我们以Demo模块为例,新建App/Demo/Models/Search.php
'对应的sql语句',多维数组 // if (isset($where['title'])) { $where['title'] = '新的sql语句'; } // 比如我加一个条件作为搜索条件 // $where['zt'] = "zt=1"; // 表加一个zt字段=1的数据 return $where; } }
目前提供以上的可重写方法体,开发者可以自由定义