在 Update Yii 中获取上传文件

发布于 2025-01-05 20:29:43 字数 105 浏览 1 评论 0原文

我有一个包含表单的项目,一个字段用于上传图像,并希望在出现警告“图像封面不能为空”时更新项目。但我希望上传图像的字段继续之前创建的上传。 已用谷歌搜索但没有成功。

你有什么想法吗?

I have a project that incorporates a form, a field is to upload an image and want to update an item when a warning appears saying "Img Cover cannot be blank.". But I want the field to upload the image to continue with the upload previously created.
Have googled but without success.

Do you have any idea?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

南烟 2025-01-12 20:29:43

不太确定了解你想要什么,但你可以在 Yii wiki 中查看以下资源:

通常,您必须在模型的 beforeSave() 方法中进行检查,类似这样,对于您要使用的 image 字段想要保存,但检查您是否保存不在 update 场景中(您必须自己设置场景)。

public function beforeSave()
{
   if ($image = CUploadedFile::getInstance($this, 'image')) {
     $this->image = file_get_contents($image->tempName);
   }
   if ($this->scenario == 'update' && !$this->image) {
      unset($this->image);
   }
   return parent::beforeSave();
}

Not too sure to understand what you want, but you can look at this resources in Yii wiki:

Usually, you have to make your checks in model's beforeSave() method, something like this, for an image field you want to save but checking you are not in an update scenario (you have to set the scenario yourself).

public function beforeSave()
{
   if ($image = CUploadedFile::getInstance($this, 'image')) {
     $this->image = file_get_contents($image->tempName);
   }
   if ($this->scenario == 'update' && !$this->image) {
      unset($this->image);
   }
   return parent::beforeSave();
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文