gpt4 book ai didi

ruby-on-rails - 如何通过 Paperclip rails 4 上传图片、word 文档和/或 PDF 文件

转载 作者:行者123 更新时间:2023-12-03 15:16:49 27 4
gpt4 key购买 nike

我想让用户上传 Word文档 PDF 文件到我的 Rails 应用程序。我的应用类似于 Pinterest 应用,用户可以创建 引脚 他们附上一张图片,然后是描述(使用 回形针 将图像附加到 Pin )。

这是我的引脚 模型:

class Pin < ActiveRecord::Base
belongs_to :user
has_attached_file :image, :styles => { :medium => "300x300>", :thumb => "100x100>" }
validates_attachment :image, content_type: { content_type: ["image/jpg", "image/jpeg", "image/png", "image/gif"] }
validates :image, presence: true

end

我的 引脚 Controller :
class PinsController < ApplicationController
before_action :set_pin, only: [:show, :edit, :update, :destroy]
before_action :correct_user, only: [:edit, :update, :destroy]
before_action :authenticate_user!, except: [:index, :show]

def index
@pins = Pin.all.order("created_at DESC").paginate(:page => params[:page], :per_page => 15)
end

def show
end

def new
@pin = current_user.pins.build
end

def edit
end

def create
@pin = current_user.pins.build(pin_params)
if @pin.save
redirect_to @pin, notice: 'Pin was successfully created.'
else
render action: 'new'
end
end

def update
if @pin.update(pin_params)
redirect_to @pin, notice: 'Pin was successfully updated.'
else
render action: 'edit'
end
end

def destroy
@pin.destroy
redirect_to pins_url
end

private

def set_pin
@pin = Pin.find(params[:id])
end

def correct_user
@pin = current_user.pins.find_by(id: params[:id] )
redirect_to pins_path, notice: "Not authorized to edit this Pin" if @pin.nil?
end


def pin_params
params.require(:pin).permit(:description, :image)
end
end

我想知道我是否只需要创建另一个 has_attached_file 的方法Word 文档 PDF 我的 中的文件销 模型,然后创建一个 View 供用户上传文件。

最佳答案

这取决于...

如果要附图片您需要为该文档创建另一个回形针属性的文档。在您的模型上:

has_attached_file :image, :styles => { :medium => "300x300>", :thumb => "100x100>" }
validates_attachment :image, content_type: { content_type: ["image/jpg", "image/jpeg", "image/png", "image/gif"] }

has_attached_file :document
validates_attachment :document, :content_type => { :content_type => %w(application/pdf application/msword application/vnd.openxmlformats-officedocument.wordprocessingml.document) }

如果要附图片 您可以执行以下操作的文档:
has_attached_file :document
validates_attachment :document, :content_type => {:content_type => %w(image/jpeg image/jpg image/png application/pdf application/msword application/vnd.openxmlformats-officedocument.wordprocessingml.document)}

如果您选择第一个选项,您将需要在 View 中输入两个文件,而只有第二个。这没有对错。这取决于你想做什么。

关于ruby-on-rails - 如何通过 Paperclip rails 4 上传图片、word 文档和/或 PDF 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24715918/

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