我在 Yii1.x 框架中使用 coco 文件上传器扩展,但它不能正常工作。1:就像我想从状态区域中删除上传的文件名一样,它不起作用。2:如果我想编辑文件,我无法限制上传文件。3:它也有用户界面问题。
我正在像这样使用可可。
widget('ext.coco.CocoWidget'
,array(
'id'=>'cocowidget1',
'onCompleted'=>'function(id,filename,jsoninfo){ }',
'onCancelled'=>'function(id,filename){ alert("cancelled"); }',
'onMessage'=>'function(m){ alert(m); }',
'allowedExtensions'=>array('jpeg','jpg','gif','png'), // server-side mime-type validated
'sizeLimit'=>2000000, // limit in server-side and in client-side
'uploadDir' => 'assets/', // coco will @mkdir it
// this arguments are used to send a notification
// on a specific class when a new file is uploaded,
'receptorClassName'=>'application.models.MyModel',
'methodName'=>'onFileUploaded',
'userdata'=>$model->primaryKey,
// controls how many files must be uploaded
'maxUploads'=>3, // defaults to -1 (unlimited)
'maxUploadsReachMessage'=>'No more files allowed', // if empty, no message is shown
// controls how many files the can select (not upload, for uploads see also: maxUploads)
'multipleFileSelection'=>true, // true or false, defaults: true
));
?>