PostgreSQL
 sql >> डेटाबेस >  >> RDS >> PostgreSQL

रेल 4 कस्टम 404 हेरोकू पर पोस्टग्रेस्क्ल कनेक्शन विफलता का कारण बनता है

यहाँ कार्यात्मक नियंत्रक कोड है:

class ErrorsController < ApplicationController
  def not_found
    respond_to do |format|
      format.any(:htm, :html, :xls, :xlsx) { render :status => 404, :layout => "error_frame", :formats => [:html] }
      format.all { render nothing: true, status: 404 }
    end
  end

  def unacceptable
    respond_to do |format|
      format.html { render :status => 422, :layout => "error_frame" }
      format.all { render nothing: true, status: 422 }
    end
  end

  def internal_error
    respond_to do |format|
      format.html { render :layout => false, :status => 500 }
      format.all { render nothing: true, status: 500}
    end
  end
end



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. लिनक्स पर एक्सएफएस की वापसी

  2. uWSGI, फ्लास्क, sqlalchemy, और postgres:SSL त्रुटि:डिक्रिप्शन विफल या खराब रिकॉर्ड मैक

  3. मैं क्वेरी निष्पादन समय के psycopg2 लॉगिंग कैसे प्राप्त करूं?

  4. SQLAlchemy (psycopg2.ProgrammingError) 'तानाशाही' प्रकार को अनुकूलित नहीं कर सकता

  5. सूचियों / सरणियों के लिए PL/pgSQL नियंत्रण संरचनाएं