我想让用户将视频上传到我的网站。我在带窗户的铁轨上使用红宝石。我也在使用设计进行用户身份验证。如何让他们上传视频需要做什么?有人告诉我,我可以使用回形针,但我不确定如何使用。
答案 0 :(得分:2)
尝试:安装Paperclip和 模型类
validates_attachment :videos,
content_type: ['video/mp4'],
message: "Sorry, only MP4 Videos allow",
if: :is_video?
private
def is_video?
url.instance.attachment_content_type =~ %r(video)
end