ruby-on-rails-3 – 如何从Rails中的布局模板中获取当前视图名称
发布时间:2020-12-16 19:16:12 所属栏目:百科 来源:网络整理
导读:是否可以从布局中获取当前渲染视图的名称? 解决方法 我为css命名空间做了类似的事情: # config/initializers/action_view.rbActionView::TemplateRenderer.class_eval do def render_template_with_tracking(template,layout_name = nil,locals = {}) # wi
是否可以从布局中获取当前渲染视图的名称?
解决方法
我为css命名空间做了类似的事情:
# config/initializers/action_view.rb ActionView::TemplateRenderer.class_eval do def render_template_with_tracking(template,layout_name = nil,locals = {}) # with this gsub,we convert a file path /folder1/folder2/subfolder/filename.html.erb to subfolder-filename @view.instance_variable_set(:@_rendered_template,template.inspect.gsub(/(..*)/,'').split('/')[-2..-1].join('-')) out = render_template_without_tracking(template,layout_name,locals) @view.instance_variable_set(:@_rendered_template,nil) return out end alias_method_chain :render_template,:tracking end # application.html.erb <body class="<%= :@_rendered_template %>" > (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |