ubuntu, ror, jQuery, css, website memo
太嫩, 沒啥心得, 用來紀錄每天學的
2008年12月19日 星期五
All About Layouts
railscast All About Layouts
layout 幾個常用的用法
# projects_controller.rb
layout :user_layout
#或者可以直接傳 string, layout :application
def index
@projects = Project.find(:all)
render :layout => 'projects'
#除了上面這個可以在 render 時再去指定, 也可以 :layout => false 選擇不要layout了
end
protected
#如果 layout :user_layout 傳的是symbol 就會找method
def user_layout
if current_user.admin?
"admin"
else
"application"
end
end
沒有留言:
張貼留言
較新的文章
較舊的文章
首頁
訂閱:
張貼留言 (Atom)
沒有留言:
張貼留言