ruby-on-rails – 活动管理员:如何设置页面标题?
发布时间:2020-12-16 20:32:57 所属栏目:百科 来源:网络整理
导读:这似乎应该比较简单,但我有一些麻烦跟踪答案: 如何在ActiveAdmin中设置页面标题? 解决方法 巩固答案并增加一点: 大部分是在this page on the wiki(或者我会把它放在那里). 在注册您的modeladmin文件(例如app / admin / user.rb)的文件中,您可以拥有 Activ
这似乎应该比较简单,但我有一些麻烦跟踪答案:
如何在ActiveAdmin中设置页面标题? 解决方法
巩固答案并增加一点:
大部分是在this page on the wiki(或者我会把它放在那里). 在注册您的modeladmin文件(例如app / admin / user.rb)的文件中,您可以拥有 ActiveAdmin.register User do # a simple string index :title => "Here's a list of users" do ... end # using a method called on the instance of the model show :title => :name do ... end # more flexibly using information from the model instance show :title => proc {|user| "Details for "+user.name } do ... end # for new,edit,and delete you have to do it differently controller do def edit # use resource.some_method to access information about what you're editing @page_title = "Hey,edit this user called "+resource.name end end end (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |