- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有没有人知道如何扩展 set_relation()
?
这是基于 Grocery Crud 员工和办公室表的示例的想法
$crud->set_relation('officeCode','offices','city');
代码输出将在下拉列表中显示所有城市,但我想扩展 set_relation()
以按州过滤所有城市以显示在下拉列表中?
例如,我想在下拉列表中显示亚利桑那州的所有城市,有人在使用食品 Grocery 之前这样做过吗?
引用范例:
最佳答案
我知道我的回答有些过时并且现在可能对 OP 没有用,但我猜有很多人可能正在查看这篇文章以寻找他们自己的 set_relation 问题的灵感。我对此提出了一个更简单的解决方案......(为了公平起见,我不知道 set_relation() 的第 4 个参数何时可用。)
...
$state = "AZ"; // or however you get the state you want to filter by
$crud->set_relation('officeCode','offices','city', 'officeCode IN (SELECT officeCode FROM offices WHERE state='.$state.')');
...
瞧!真正的 grocery_CRUD 令人敬畏!
关于Codeigniter Grocery Crud 扩展 set_relation() 函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7382743/
在 GroceryCrud 中,如何在不同的表中使用相同的 Id set_relation? 我想做这样的事情: $this->grocery_crud->set_relation('Id','Tab
我必须使用这些架构的表: users(id, name, email) user_details (id, user_id, physical_address, otherinfo) 我想使用 gro
有没有人知道如何扩展 set_relation() ? 这是基于 Grocery Crud 员工和办公室表的示例的想法 $crud->set_relation('officeCode','office
我是一名优秀的程序员,十分优秀!