以下の内容はhttps://hyottokoaloha.hatenablog.com/entry/2016/05/07/091903より取得しました。


インスタンス変数をDRYにする

Railsで同じビューを全ページに実装する時、全コントローラーに同じインスタンス変数を生やすのはDRYじゃないのでapplication_controller.rbにまとめて書きました。

#application_controller.rb
class ApplicationController < ActionController::Base
  before_action: set_variables

  private
    def set_variables
      @hoge = Hoge.all
      @foo = Foo.all
    end
end

もっといい対処法をご存知の方がいれば教えて下さい。




以上の内容はhttps://hyottokoaloha.hatenablog.com/entry/2016/05/07/091903より取得しました。
このページはhttp://font.textar.tv/のウェブフォントを使用してます

不具合報告/要望等はこちらへお願いします。
モバイルやる夫Viewer Ver0.14