我是Yii框架的新手,我使用yii xupload扩展程序进行多个文件上传。它工作正常。现在,我的问题是我不知道如何使用此xupload表单添加其他字段,如标题(文本字段),类别(列表框)。请帮忙。
我的代码是,
$this->widget('xupload.XUpload', array(
'url' => Yii::app()->createUrl("site/upload"),
'model' => $model,
'attribute' => 'file',
'multiple' => true,
));