gpt4 book ai didi

ruby-on-rails - Shrine gem - 如何从 s3 中删除上传的图像

转载 作者:行者123 更新时间:2023-12-03 15:46:13 25 4
gpt4 key购买 nike

显然 :remove_attachment插件在检查和提交方面起到了作用,但如何从 Controller 调用该方法?

最佳答案

所有允许您设置表单字段的插件( remove_attachmentremote_urldata_uri 、...)的工作方式都是将 getter 和 setter 添加到您的模型中,因此如果您的照片模型带有“图片”附件,你可以做photo.remove_image = true .

但是,要删除 Ruby 代码中的附件,您不需要 remove_attachment插件,您可以将附件分配给 nil :

photo.image = nil
# or
photo.update(image: nil)

关于ruby-on-rails - Shrine gem - 如何从 s3 中删除上传的图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38637615/

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