【问题标题】:rails app downloading documents instead of displayingrails app下载文档而不是显示
【发布时间】:2020-09-01 23:43:25
【问题描述】:

我正在为我的 rails 应用程序创建一个文档上传表单,一切正常,除非我尝试显示刚刚上传的 .txt 文档,而是下载了该文档?

这是在我的 show.html.erb 文件上运行的两行代码

查看文件和下载按钮都在下载文件。

如何显示文件?

这是应用程序控制器:

class ApplicationController < ActionController::Base
    before_action :configure_permitted_parameters, if: :devise_controller?

    protected

    def configure_permitted_parameters
        added_attrs = [:username, :email, :password, :password_confirmation, :remember_me]
        devise_parameter_sanitizer.permit :sign_up, keys: added_attrs
        devise_parameter_sanitizer.permit :account_update, keys: added_attrs
    end
end

这是文档控制器。上传的文件称为文档:

class DocumentsController < ApplicationController
  before_action :set_document, only: [:show, :edit, :update, :destroy]
  # GET /documents
  # GET /documents.json
  def index
    @documents = Document.all
  end

  # GET /documents/1
  # GET /documents/1.json
  def show
  end

  # GET /documents/new
  def new
    @document = Document.new
  end

  # GET /documents/1/edit
  def edit
  end

  # POST /documents
  # POST /documents.json
  def create
    @document = Document.new(document_params)

    respond_to do |format|
      if @document.save
        format.html { redirect_to @document, notice: 'Document was successfully created.' }
        format.json { render :show, status: :created, location: @document }
      else
        format.html { render :new }
        format.json { render json: @document.errors, status: :unprocessable_entity }
      end
    end
  end

  # PATCH/PUT /documents/1
  # PATCH/PUT /documents/1.json
  def update
    respond_to do |format|
      if @document.update(document_params)
        format.html { redirect_to @document, notice: 'Document was successfully updated.' }
        format.json { render :show, status: :ok, location: @document }
      else
        format.html { render :edit }
        format.json { render json: @document.errors, status: :unprocessable_entity }
      end
    end
  end

  # DELETE /documents/1
  # DELETE /documents/1.json
  def destroy
    @document.destroy
    respond_to do |format|
      format.html { redirect_to documents_url, notice: 'Document was successfully destroyed.' }
      format.json { head :no_content }
    end
  end

  private
    # Use callbacks to share common setup or constraints between actions.
    def set_document
      @document = Document.find(params[:id])
    end

    # Only allow a list of trusted parameters through.
    def document_params
      params.require(:document).permit(:title, :description, :file)
    end
end

【问题讨论】:

  • 尝试重新编辑您的帖子,使其更易于阅读

标签: download rails-activestorage railsapps


【解决方案1】:

您应该检查您是否在 Rails 控制器中发送带有选项 disposition: :inline 的文件。该选项的默认值为'attachment'

例如,在您的控制器操作中发送您的文件,例如:

send_file document.file,
          :type => "application/pdf",
          :file_name => document.file.name,
          :disposition => 'inline'

如果您希望在单独的选项卡中打开您的链接,您只需将target: '_blank' 添加到您的链接选项中。

【讨论】:

  • 我已经添加到我原来的问题中。如果你能看看控制器,因为我有点迷茫。
  • 您是否尝试将send_file 添加到get 方法中?这应该够了吧。然后您可以更改您的链接:&lt;%= link_to 'View file', @document %&gt;。这将由控制器的 get 方法处理,get 方法将返回带有内联处置的文件。
猜你喜欢
  • 2013-12-02
  • 2018-04-22
  • 2013-12-26
  • 2023-03-25
  • 2018-11-10
  • 1970-01-01
  • 1970-01-01
  • 2011-02-20
  • 1970-01-01
相关资源
最近更新 更多