我正在尝试使用yii中的eexcelview扩展导出excel文件 我跟随代码
public function behaviors(){
return array(
'eexcelview'=>array(
'class'=>'extensions.eexcelview.EExcelBehavior'
),
);
}
还有一个
public function actionTest()
{
// Load data
$model = Customer::model()->findAll();
// Export it
$this->toExcel($model, array(
'custid',
'custname'
),
'Test File',
array(
'creator' => 'Zen',
),
'Excel2007' // This is the default value, so you can omit it. You can export to CSV, PDF or HTML too
);
}
}
在toexcel扩展文档中给出
我在扩展名/ eexcelview / EExcelBehavior.php位置有eecxcelview文件夹和EExcelBehavior文件
但我在执行代码时遇到以下错误
别名“extensions.eexcelview.EExcelBehavior”无效。确保它指向现有的PHP文件,并且该文件是可读的。
请帮助我,因为我是yii的新手,我正在使用yii 1.0。
答案 0 :(得分:0)
尝试将扩展名文件夹引用为" ext"。请尝试以下方法:
'eexcelview'=>array(
'class'=>'ext.eexcelview.EExcelBehavior'
),