使用Rails 5.2 rc1,是否可以在开发中的localhost上直接上传?
这是我的表单new.html.erb
:
<div class="form-group">
<%= f.label :images %>
<%= f.file_field :images, multiple: true, direct_upload: true, class: 'form-control' %>
</div>
这是我在控制台中遇到的错误:
ActiveSupport::MessageVerifier::InvalidSignature (ActiveSupport::MessageVerifier::InvalidSignature):
答案 0 :(得分:2)
我遇到了相同的错误消息(rails 5.2.1)。
问题是我的浏览器只是将文件名作为字符串提交,而不是上传文件。
发生这种情况是因为我试图向文件输入添加一个style="display: none;"
属性,这在尝试设置上载按钮的样式时很常见。不知道为什么浏览器(chrome)会这样。解决方案是不使用display:none,而是使用css opacity = 0设置按钮样式。
不要这样做:
<label class="btn btn-primary btn-file">
Custom element to upload an image, hurray!
<%= f.file_field :avatar, accept: "image/*", style: "display: none;" %>
</label>
相反,使用CSS隐藏默认的浏览器按钮。有关演示,请参见here。
答案 1 :(得分:0)
对于将来碰到这个问题的其他人:
我错误地在我的控制器中使用了它:
def create
@post = Post.new(post_params)
@post.images.attach(post_params[:images]) # THIS WAS THE ERROR!!!
respond_to do |format|
if @post.save
format.html { redirect_to @post, notice: 'Post was successfully created.' }
format.json { render :show, status: :created, location: @post }
else
format.html { render :new }
format.json { render json: @post.errors, status: :unprocessable_entity }
end
end
end
创建新帖子和附加已附加的图片会导致各种错误,例如损坏的PG密钥和无效签名。
确保在新创建的模型实例上传文件时省略attach
。