Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6605227
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T19:15:32+00:00 2026-05-25T19:15:32+00:00

How can I render send to a client a file (PDF, CSV, etc) without

  • 0

How can I render send to a client a file (PDF, CSV, etc) without render this file?

For example, imagine a Students controller (created using scaffold), we have ‘new’ form and ‘create’ action:

  def new
    @student = Student.new
    respond_to do |format|
      format.html # new.html.erb
    end
  end

  def create
    @student = Student.new(params[:student])
    respond_to do |format|
      if @student.save
        flash[:notice] = 'Student created'
        format.html { redirect_to(@student) }
      else
        format.html { render :action => "new" }
      end
    end
  end

When a student is successfully created it will redirect to ‘show’ template. That is OK!
But I need to send to client -for example- a PDF file and then render ‘show’ action.

This PDF file is like a creation receipt for client.

Extra info: now use Prawn to make PDF and sending to client by code like this:

    respond_to do |format|
      format.pdf { render :layout => false }
    end

In brief, I need get filled form, create student, send PDF to browser (as a creation receipt) and render ‘show’ action to display student created.

Thank you very much.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T19:15:33+00:00Added an answer on May 25, 2026 at 7:15 pm

    Here is my solution using wicked_pdf.

    This creates the pdf but doesn’t download it. Saves PDF to a file. Saves the link in the database, rerenders the view with the link displayed (view is displaying the @plan).

        # create a unique PDF filename
        pdf_uuid = UUIDTools::UUID.timestamp_create().to_s
        pdf_uuid_filename = Rails.root.join('public/pdf', "#{pdf_uuid}.pdf").to_s
    
        # create a pdf but don't display it
        pdf_file = render_to_string :pdf => pdf_uuid_filename, 
                                    :template  => 'plans/show.pdf.erb' ,
                                    :layout    => 'pdf',
                                    :save_only => true
        # save to a file
        File.open(pdf_uuid_filename, 'wb') do |file|
          file << pdf_file
        end
        # create full URL path to created file  
        @plan.url = request.url[0, request.url.index("plans")] +  'pdf/' + CGI::escape("#{pdf_uuid}.pdf")
        @plan.save!
        # render the page again with the link being displayed
        redirect_to :back
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How can I render after executing an action in a restful controller instead of
I have an HBITMAP containing alpha channel data. I can successfully render this using
Can anyone recommend a dropdownlist control for asp.net (3.5) that can render option groups?
I know that within a view I can render an action from the same
I've been searching for a library that can render organisation charts in either flash
I'm trying to write a C++ windows service that can render to a texture.
How can I have a view render a partial (user control) from a different
How can I write an ASP.NET (C#) application that will render a page can
When I render a page using the Django template renderer, I can pass in
I have this in my controller. I need my view to generate some HTML,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.