0

大家好,我有一个使用 crud 在 codeigniter 中开发的网站。在我的插入视图中,我有一个选择,我想在其中输入一个默认值,我已经完成了他的模式(文件的名称是 id_company)

$crud = new grocery_CRUD();
$state_crud = $crud->getState();
$crud->set_relation('id_company','company','name_company');
$crud->set_relation('id_plant','plant','name_plant');
$crud->set_relation('id_order','order','name_order');
$crud->field_type('id_plant','dropdown', array('0' => '') );
$crud->unset_print();
$crud->unset_export();
$crud->unset_delete();
$data['name_company'] = $company[0]['name_company'];
$data['id_company'] = $company[0]['id'];

$crud->callback_edit_field('id_company',array($this,'edit_field_callback_id_company_add'));

回调是:

function edit_field_callback_id_company_add($value, $primary_key){
    $company = $this->Company_model->getCompany($value);
    return '<div id="field-id_company" class="readonly_label">'.$company->name_company.'</div>';
}

我的模型函数

function getCompany($id_company, $select = ''){
        if( isset($id_company) && $id_company > 0 ) : 
            $this->CI =& get_instance();
            if( $select ) $this->CI->db->select($select);
            $this->CI->db->where('id', $id_company);
            $query = $this->CI->db->get_where($this->company_table);
            return $query->result_array();
        endif;
        return FALSE;
    }

我已经看到 crud 插入了一个名为 field-id_company_czhn 的选择,我尝试插入它但没有。哪里有问题?

4

2 回答 2

2

更新:也许如果您尝试添加一个 if 语句,它应该可以工作。所以在你的情况下,这可能对你有用:

$crud = new grocery_CRUD();
$state_crud = $crud->getState();

if ($state_crud == 'edit' || $state_crud == 'update') {
    $crud->callback_edit_field('id_company',array($this,'edit_field_callback_id_company_add'));
} else {
    $crud->set_relation('id_company','company','name_company');
}

...

您使用回调的逻辑是错误的。所以在你的情况下,你需要这样的东西:

 $crud->callback_edit_field('id_company',
                     array($this,'edit_field_callback_id_company_add'));

进而:

 function edit_field_callback_id_company_add($value, $primary_key){

    $this->db->where('id',$value); //Where id is the primary key for company table
    $company = $this->db->get('company')->row();

    return '<div id="field-id_company" class="readonly_label">'.$company->name_company.'</div>';
 }

文档中有一篇文章解释了如何使用回调:http ://www.grocerycrud.com/documentation/tutorial_using_callbacks

如果您愿意,还可以使用 field_type 方法(http://www.grocerycrud.com/documentation/options_functions/field_type)和 field_type = readonly

至于默认值功能,github 上有一个问题:https ://github.com/scoumbourdis/grocery-crud/issues/138

于 2013-03-06T08:12:45.960 回答
-1

这里决定了这个问题。我希望它对你有帮助。http://www.grocerycrud.com/forums/topic/1846-setting-default-value-for-field-type-and-set-relation/

于 2013-11-05T08:20:43.787 回答