我正在为我的项目使用codeigniter并实现搜索。我想用他们拥有的汽车从用户表中过滤用户。该表的结构如下所示
+-----+----------+---------------------+---------------+
| #id | username | cars | other_details |
+-----+----------+---------------------+---------------+
| 1 | MAC | Jaguar,Porche | -- |
| 2 | DEV | Porche,Ferrari,Ford | -- |
| 3 | MONICA | Ford,Audi | -- |
+-----+----------+---------------------+---------------+
在前端,我正在从复选框中选择汽车,这些复选框是为那些拥有这些汽车的查找用户返回汽车阵列,如[" Porche","法拉利"]。我无法找到如何让用户在模型中使用codeigniter活动记录的解决方案。请帮我看看如何让阵列中有汽车的用户/行。 提前谢谢。