无法更新文章上的图像
Unable to update images on articles
我正在使用 carrierwave 和 cloudinary gems 在我的文章模型上附加图像。创建功能工作正常,但当我需要更新现有图像时,出现以下错误:
'undefined method `reject' for "image/upload/v1557497204/hqef7unyuvfsva933idv.jpg":String'.
但是,如果我返回并刷新文章页面,新图像就在那里
def update
@article = Article.find(params[:id])
if @article.update(article_params)#the error raised here
flash[:notice] = "Your Article was Created"
redirect_to @article
else
render 'edit'
end
end
这很可能是由一个已知问题引起的:https://github.com/cloudinary/cloudinary_gem/issues/266
多张图片上传暂时未解决
我正在使用 carrierwave 和 cloudinary gems 在我的文章模型上附加图像。创建功能工作正常,但当我需要更新现有图像时,出现以下错误:
'undefined method `reject' for "image/upload/v1557497204/hqef7unyuvfsva933idv.jpg":String'.
但是,如果我返回并刷新文章页面,新图像就在那里
def update
@article = Article.find(params[:id])
if @article.update(article_params)#the error raised here
flash[:notice] = "Your Article was Created"
redirect_to @article
else
render 'edit'
end
end
这很可能是由一个已知问题引起的:https://github.com/cloudinary/cloudinary_gem/issues/266
多张图片上传暂时未解决