We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
理想: 無駄が多いので、SakeControllerでSakeHelperをインクルードしたくない。
現状: bottom_bottleメソッドを使うためにControllerでHelperをIncludeしている。
どうする: bottom_bottleはSakeクラス(Sakeモデル)の定数として実装して、Sake::BOTTOM_BOTTLEでコントローラからもヘルパーからも参照できるようにする。 これにより、SakeControllerでSakeHelperをインクルードする必要がなくなる。
Sake::BOTTOM_BOTTLE
The text was updated successfully, but these errors were encountered:
to_byもSakeControllerで使ってたわ
Sorry, something went wrong.
after_initialize do |sake| sake.brewery_year ||= default_value end
この書き方だとbrewery_year がnil(不明)の値を受け付けなくなってダメだった。 after_initialize がnew以外の時も走るからか? https://qiita.com/supercell1023koeda/items/46aad5929491acd20108
after_initialize(if: :new_record?) do |sake| sake.brewery_year ||= default_value end
これでよかった。 (if: :new_record?)が大事
momocus
No branches or pull requests
理想:
無駄が多いので、SakeControllerでSakeHelperをインクルードしたくない。
現状:
bottom_bottleメソッドを使うためにControllerでHelperをIncludeしている。
どうする:
bottom_bottleはSakeクラス(Sakeモデル)の定数として実装して、
Sake::BOTTOM_BOTTLE
でコントローラからもヘルパーからも参照できるようにする。これにより、SakeControllerでSakeHelperをインクルードする必要がなくなる。
The text was updated successfully, but these errors were encountered: