当我添加文件类型检查时,事情就破了:)
我最初只有这条规则:
array('image, pictures, documents', 'default', 'setOnEmpty' => true, 'value' => ''),
一切正常,除了上传的文件类型没有安全性。所以我添加了规则(见下文),只允许某些文件类型,最大大小和最大数量。
问题:添加文件类型检查后,更新全部中断。表单上未使用的文件字段被设置为NULL,而不是以前数据库中的旧值。
症状:当我编辑包含图像或文档集的记录(图像,图片或文档)时,它们全部重置!我有更多的字段,如名称,描述等。我可以只编辑名称,而不是触摸任何上传的文件字段。噗,他们都是空的。因此,当模型保存时,它会替换现有值。因此,我们丢失了为该记录保存的图像或文档!
现在,如果我尝试更改其中一个文件。假设我有一个图像,但没有图片或文档......如果我添加文档,文档将保存到数据库中,但原始图像将被删除(数据库中的值消失)。它不应该被触及。
表单上的其他字段仍然存在,因此它们不会神奇地重置。名称,描述,所有这些仍然存在。只重置文件验证规则定义的那些。
当我创建新记录时,它的工作方式应该如此。
似乎只是在更新记录时,所有文件字段在保存在数据库中时都会重置。
型号:
public function rules()
{
return array(
array('image','file', 'allowEmpty' => true, 'types'=>'jpg, gif, png, jpeg', 'maxSize'=>1024 * 1024 * 1, 'tooLarge'=>'File has to be smaller than 1MB'),
array('pictures','file', 'allowEmpty' => true, 'types'=>'jpg, gif, png, jpeg', 'maxSize'=>1024 * 1024 * 1, 'tooLarge'=>'File has to be smaller than 1MB', 'maxFiles' => 10, 'tooMany'=>'You have selected too many files!'),
array('documents','file', 'allowEmpty' => true, 'types'=>'doc, docx, pdf, ppt, psd, rtf, txt, xls, xlsx, csv', 'maxSize'=>1024 * 1024 * 10, 'tooLarge'=>'File has to be smaller than 10MB', 'maxFiles' => 10, 'tooMany'=>'You have selected too many files!'),
);
}
控制器:
public function actionUpdate($id)
{
$uid = Yii::app()->user->id;
$model=$this->loadModel($id);
if ( $model->uid !== $uid ) {
$this->redirect(array('index'));
}
// Uncomment the following line if AJAX validation is needed
// $this->performAjaxValidation($model);
$origImage = $model->image;
$origPictures = $model->pictures;
$origDocuments = $model->documents;
if(isset($_POST['Titles']))
{
$model->attributes=$_POST['Titles'];
$model->image = $origImage; // we are not ready to reset them yet
$model->pictures = $origPictures; // we are not ready to reset them yet
$model->documents = $origDocuments; // we are not ready to reset them yet
$imageInstance = CUploadedFile::getInstance($model, 'image');
$picturesInstance = CUploadedFile::getInstances($model, 'pictures');
$documentsInstance = CUploadedFile::getInstances($model, 'documents');
if($model->validate())
{
//die(var_dump($model->image)); //POOF - Here is where it's reset
if($model->save())
{
// do more stuff here
}
}
}
}
你可以看到我的“POOF - 这里是它重置的地方”评论,这是我有一个模具命令向我展示$ model->图像的价值。使用die()可以让我更新并使测试上传更容易。
该die命令将$ model-> image显示为NULL ...它应该是更新之前数据库中的旧值(当它未在表单中使用时)。
为什么$ model->验证将'image'设置为null?
'image'值的示例,JSON编码数组:
[{"image":"18a18923c449cb0b6f2326ea43f2aec6.jpg","thumb":"18a18923c449cb0b6f2326ea43f2aec6_thumb.jpg"}]
注意:文档在随机哈希之前存储更多信息,如文件扩展名和文件原始名称。
也许JSON数组(上面)验证失败了,这就是为什么它被设置为NULL?如果是这样,我如何允许在这些字段中保存JSON数组?
JSON允许我跟踪文件名,缩略图,扩展名,名称,描述等内容。所以稍后我可以允许用户添加自定义名称或描述或每个图像(或文档)。所以我需要的信息不仅仅是文件名。
如果不需要名称,描述等...我只会存储文件名,并为缩略图添加“_thumb”..不幸的是,我需要保存更多数据。
非常感谢任何帮助!
答案 0 :(得分:0)
尝试此规则,
array('image, pictures, documents', 'file', 'allowEmpty' => true, 'types' => 'jpg,jpeg,gif,png'),