渲染
# 渲染UsersController
render :active_scaffold => 'users'
# 同样是渲染UsersController,这次将标题改为"活跃用户"
render :active_scaffold => 'users', :label => '活跃用户'
# 按`name`排序,正序(ASC)
render :active_scaffold => 'users', :sort => "name", :sort_direction => "ASC"
# 渲染UsersController
render :active_scaffold => 'users'
# 同样是渲染UsersController,这次将标题改为"活跃用户"
render :active_scaffold => 'users', :label => '活跃用户'
# 按`name`排序,正序(ASC)
render :active_scaffold => 'users', :sort => "name", :sort_direction => "ASC"
本文介绍在 Rails 应用中如何定制化渲染用户列表的方法,包括修改标题、指定排序方式等技巧。
2496

被折叠的 条评论
为什么被折叠?



