如何从我的方法上的另一个表中获取字段的值?当然,我有它的表的主键。
我想在添加/编辑操作中执行如下操作:
if (is_empty(value_field_from_another_table)) {
$crud->edit_fields('first','second');
$crud->add_fields('first','second');
} else {
$crud->edit_fields('first');
$crud->add_fields('first');
}
1条答案
按热度按时间jgwigjjp1#