我正在使用载波和云宝石将图像附加到文章模型上。创建功能正常,但是当我需要更新现存图像时,出现波纹管错误:
“针对“ image / upload / v1557497204 / hqef7unyuvfsva933idv.jpg”的未定义方法“拒绝”:字符串”。
但是,如果我返回并刷新文章页面,则新图像在那里
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
答案 0 :(得分:0)
这很可能是由以下已知问题引起的:https://github.com/cloudinary/cloudinary_gem/issues/266
当前无法上传多个图像。