gpt4 book ai didi

mysql - Yii - 文件验证规则在保存到数据库时将 JSON 数组设置为 NULL

转载 作者:行者123 更新时间:2023-11-29 23:09:46 25 4
gpt4 key购买 nike

当我添加文件类型检查时,事情就坏了:)

我最初只有这个规则:

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!'),
);
}

Controller :

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 - Here is where it Reset”评论,这是我有一个 die 命令来显示 $model->image 的值的地方。使用 die() 可以让我点击刷新并使测试上传变得更容易。

那个 die 命令显示 $model->image 为 NULL...它应该是更新之前数据库中的旧值(当它没有在表单中使用时)。

为什么 $model->validate 将 'image' 设置为 null?

“图像”值示例,JSON 编码数组:

[{"image":"18a18923c449cb0b6f2326ea43f2aec6.jpg","thumb":"18a18923c449cb0b6f2326ea43f2aec6_thumb.jpg"}]

注意:文档存储更多信息,例如文件扩展名和随机哈希之前的文件原始名称。

也许 JSON 数组(上面)未通过验证,这就是它被设置为 NULL 的原因?如果是这样,我如何允许在这些字段中保存 JSON 数组?

JSON 允许我跟踪文件名、缩略图、扩展名、名称、描述等内容。因此,稍后我可以允许用户添加自定义名称或描述或每个图像(或文档)。所以我确实需要更多信息而不仅仅是文件名。

如果不是需要名称、描述等...我只会存储文件名,并添加“_thumb”作为缩略图。不幸的是,我需要保存更多数据。

非常感谢任何帮助!

最佳答案

试试这个规则,

array('image, pictures, documents', 'file', 'allowEmpty' => true, 'types' => 'jpg,jpeg,gif,png'),

关于mysql - Yii - 文件验证规则在保存到数据库时将 JSON 数组设置为 NULL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28133489/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com