$crud->set_relation('seo_url', 'db_projects','seo');
在插入/更新上将crud从db_projects添加 id (主键)到 seo_url 字段。如何将db_projects id (主键)中的 seo 添加到seo_url字段?
答案 0 :(得分:2)
对于这种情况,我认为唯一的解决方案是使用field_type方法实际创建自定义下拉列表。因此,在您的情况下,您将拥有:
$seo_results = array();
foreach ($this->db->get('db_projects')->result() as $row) {
$seo_results[$row->seo] = $row->seo;
}
$crud->field_type('seo_url', 'dropdown', $seo_results);