1
當用戶碰到get_pdf動作可能會出現什麼問題? 如果有問題,該如何解決?PDF和Ruby on Rails
class PdfController < ApplicationController
def get_pdf
send_data Pdf.create(params[:contents])
end
end
class Pdf
def self.create(contents)
make_pdf(contents) # takes 30 seconds to run
end
end