gpt4 book ai didi

php - CodeIgniter GroceryCrud set_relation 多个表中的相同id

转载 作者:行者123 更新时间:2023-11-29 12:24:57 24 4
gpt4 key购买 nike

在 GroceryCrud 中,如何在不同的表中使用相同的 Id set_relation?

我想做这样的事情:

$this->grocery_crud->set_relation('Id','Table1','Field');
$this->grocery_crud->set_relation('Id','Table2','OtherField');

但是当我这样做时,它仅适用于最后一个值,并且我无法自定义标签。如何在不同的表中使用多个关系来实现这个目标?

最佳答案

如果您想创建将呈现为 Field - OtherField 而不是 Id 列的下拉列表,那么您可以:

在数据库中创建一个 View ,用于连接表 Table1 和 Table2,例如:

CREATE VIEW Table1_Table2 AS
SELECT Table1.Id, Table1.Field, Table2.OtherField
FROM
Table1 inner join Table2 on Table1.Id = Table2.Id

然后将该 View 包含在您的 GroceryCRUD 应用中:

$this->grocery_crud->set_relation('Id', 'Table1_Table2', '{Field} - {OtherField}');

关于php - CodeIgniter GroceryCrud set_relation 多个表中的相同id,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28468335/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com