0
我想在我的佈局中使用我的控制器的變量。如何在我的佈局中使用控制器變量
例如:
@posts = Post.all.count
在我的佈局,我想列出的職位數量,甚至當我打開另一個控制器的索引視圖。
非常感謝!
我想在我的佈局中使用我的控制器的變量。如何在我的佈局中使用控制器變量
例如:
@posts = Post.all.count
在我的佈局,我想列出的職位數量,甚至當我打開另一個控制器的索引視圖。
非常感謝!
兩個解決方案:
<%= 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
大。有效!我選擇了第一個解決方案 – daniel 2011-01-06 13:40:41