我创建了function helper
以便在视图中使用,现在函数助手无法正常工作,我得到了错误:
无法加载请求的文件:helpers / mainhelper_helper.php
我的助手:
function getCategories($id){
$CI =& get_instance();
$CI->db->select('*');
$CI->db->from('categories');
$CI->db->where('cat_parent_id',$id);
return $CI->db->get()->result();
}
我将我的助手添加到 autoload.php:
$autoload['helper'] = array('form','url' , 'mainHelper');
答案 0 :(得分:2)
将帮助文件的名称更改为mainHelper_helper.php
,它将起作用。