我想保留注册页面的照片列,以便用户可以选择图像并在该列中显示我正在使用 yii 框架中的 ImageSelect 扩展,但它不起作用建议我在注册用户时如何保留图像
这是我的 ImageSelect 代码
<?php echo $form->labelEx($model,'profileImage'); ?>
<?php
$this->widget('ext.imageSelect.ImageSelect', array(
'path'=>Yii::app()->baseUrl . '/images/Penguins.jpg',
'alt'=>'alt text',
'uploadUrl'=> 'profileinfo/upload',
'htmlOptions'=>array()
));
?>
我的控制器代码是
public function actionUpload()
{
$file = CUploadedFile::getInstanceByName('file');
// Do your business ... save on file system for example,
// and/or do some db operations for example
$file->saveAs(Yii::app()->baseUrl . '/images/'.$file->getName());
// return the new file path
echo Yii::app()->baseUrl.'/images/'.$file->getName();
}