2011-01-06 83 views

回答

2

兩個解決方案:

  • 使用<%= Post.all.count %>在佈局中。
  • 在加載變量的ApplicationController中添加一個before_filter

    class ApplicationController < ActionController::Base 
        before_filter :load_layout_variables 
    
    protected 
        def load_layout_variables 
        @posts = Post.all.count 
        end 
    end 
    
+0

大。有效!我選擇了第一個解決方案 – daniel 2011-01-06 13:40:41

相關問題