gpt4 book ai didi

ruby-on-rails - 无法使用 Carrierwave_direct 将文件保存到数据库

转载 作者:行者123 更新时间:2023-12-04 06:03:19 28 4
gpt4 key购买 nike

我想在我的应用程序中试用 Carrierwave_direct,所以我决定关注 Railscast 插曲。 http://railscasts.com/episodes/383-uploading-to-amazon-s3

我使用 Carrierwave 进行各种上传,包括图片、视频和歌曲。不过现在,我只是在测试视频,看看我是否喜欢它。现在,视频正在上传到我的亚马逊存储桶,但文件(字符串)没有保存到我的数据库,也没有在页面上呈现。这就是我现在所在的位置...

Rails v 4.0.1
Ruby v 2.1.1

视频 uploader

class VideoUploader < CarrierWave::Uploader::Base
include CarrierWaveDirect::Uploader

# I haven't added any resizing or anything yet
end

视频模型(video.rb)

mount_uploader :video, VideoUploader # In the database, the column is video:string
...
...

上传文件的页面,在被重定向到表单之前

def home
@uploader = Video.new.video
@uploader.success_action_redirect = new_video_url
end

视频 Controller

def new
@video = Video.new(key: params[:key])
end

def create
@video = current_user.videos.create(video_params)
...
end

private

def video_params
params.require(:video).permit(:type, :title, :description, :video)
end

home.html.erb(在成功将您重定向到表单的其余部分之前上传视频的位置)

<%= direct_upload_form_for @uploader do |f| %>
<p><%= f.file_field :video %></p>
<p><%= f.submit "Upload Video" %></p>
<% end %>

videos/_form.html.erb(视频表格的其余部分)

<%= form_for(@video, html: { :class => "full-form form-vertical" }) do |f| %>
<fieldset>

<%= render "shared/error_messages", object: f.object %>

<%= f.hidden_field :key %>

<div class="form-group">
<%= f.label :title %>
<%= f.text_field :title, :class => "form-control" %>
</div>

<%= f.submit %>
</fieldset>
<% end %>

我的亚马逊配置正确,所以我不会提供我的 carrierwave.rb 初始化文件。

所以重申一下,发生的事情在第一页上,我将上传视频,这会将我重定向到表单。如果我检查表单,我可以看到 :key 中有正确的值。但是,如果我在模型上放置一个存在验证器,表单将不会提交,因为视频将是空白的。如果没有验证,表单将提交,亚马逊会将其上传到我的存储桶,但 (1) 视频文件名/字符串不会存储在我的数据库中,并且 (2) 它不会呈现在页面上,因为它是空的。

感谢您的关注。干杯。

最佳答案

#video_params 需要在您的视频 Controller 中允许 :key。

private

def video_params
params.require(:video).permit(:type, :title, :description, :video, :key)
end

您将 :key 一直向下,将其设置在 #new 中,将其与 hidden_​​field 保持在一起,然后将其丢失在强参数上。

:key 需要返回到作为 :video 安装在 Video 下的 VideoUploader 对象,这就是允许您的 Video 类接受 :key 属性的原因。

视频模型(video.rb)

mount_uploader :video, VideoUploader # In the database, the column is video:string
...

关于ruby-on-rails - 无法使用 Carrierwave_direct 将文件保存到数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22288502/

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