我正在使用 CakePHP2.4 和搜索插件https://github.com/CakeDC/search
我有以下
Employee hasOne EmployeeProfile
Employee hasMany Qualification
所以我有一个搜索栏。
搜索栏将使用 LIKE 通过以下字段进行搜索
Employee.name
EmployeeProfile.email
Qualification.title
如何配置Employee->filterArgs
此搜索的模型?
这是原始问题的交叉发布here