Just do IT

思うは招く

2021-01-05から1日間の記事一覧

PG::ConnectionBad - could not connect to server: Connection refused エラーを解決

直面したエラー rails sでサーバーを起動しようとしたら、こんなエラー画面が出てPostgreSQLが起動できない。 PG::ConnectionBad - could not connect to server: Connection refused Is the server running on host "localhost" (::1) and accepting TCP/IP…

Rails before_xxx で throw(:abort) をする意味

before_save とは オブジェクトがsaveされる前に発動されるコールバック 引数としてメソッドが渡された場合、それをクリアしないとsaveされない バリデーションの一種 Rails 4 での仕様 before_xxx では、false を返した場合のみ保存処理が停止していた nil …