Ruby on Rails 中是否有某种母版页功能?

发布于 2024-08-08 16:19:59 字数 191 浏览 2 评论 0原文

在过去七年左右的时间里,我一直是一名 .Net 开发人员,最近几年我一直在使用 ASP.Net。我现在在一些项目中使用 Ruby on Rails,我想知道 Ruby on Rails 中是否有某些功能可以让您执行母版页类型的操作?

基本上,我想要一种通过页眉和页脚等为网站提供一致的外观和感觉的方法,然后让每个页面将其内容放入其中。你如何做到这一点?

I've been a .Net developer for the past seven years or so, and been working with ASP.Net for the last couple of years. I'm now using Ruby on Rails for some projects, and I'm wanting to know if there is something in Ruby on Rails that lets you do master page type stuff?

Basically, I want a way to provide a consistent look and feel for the site with a header and footer and so on, and then just have each page put its content inside of that. How do you accomplish this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

你好,陌生人 2024-08-15 16:19:59

在 app/layouts/application.(html.erb|html.haml) 的 Rails 项目中,这是 master 的布局或等效布局。
您还可以创建其他布局并指定每个操作使用的布局:

render :index, :layout => "awesome"

或者指定整个控制器的布局:

class PostController < ActionController::Base
  layout "super_awesome"
end

in your rails project in app/layouts/application.(html.erb|html.haml), this is the layout or equivalent for master.
You can also create other layouts and specify the layout to use for each action :

render :index, :layout => "awesome"

Or specify the layout for a whole controller :

class PostController < ActionController::Base
  layout "super_awesome"
end
日记撕了你也走了 2024-08-15 16:19:59

您可以使用类似于 ASP.Net 中的母版页的布局,有多种方法可以将母版页分配给您的铁路应用程序:

  1. 对于单页
类EmployeesController <应用控制器
  布局“子主”
  # ---
结尾

submaster 位于 app/views/layouts/submaster.html.erb

  1. 对于整个应用程序
类ApplicationController <动作控制器::基础
  布局“主”
  #...
结尾

main 位于 app/views/layouts/main.html.erb

  1. 运行时布局
类EmployeesController <应用控制器
      布局:emp_layout

      定义显示
        # ---
      结尾

      私人的
        def emp_layout
          @当前用户.admin? ? “管理员”:“副站长”
        结尾

 结尾

如果当前用户是管理员用户,他们将获得管理布局,其他子主布局。

如果可能,请检查轨道中的产量标识。

You can use layout which is look like master page in ASP.Net, there are many way to assign master page to your rail application :

  1. For single page :
class EmployeesController < ApplicationController
  layout "submaster"
  # ---
end

submaster is located at app/views/layouts/submaster.html.erb

  1. For whole application :
class ApplicationController < ActionController::Base
  layout "main"
  #...
end

main is located at app/views/layouts/main.html.erb

  1. Layout at run-time :
class EmployeesController < ApplicationController
      layout :emp_layout

      def show
        # ---
      end

      private
        def emp_layout
          @current_user.admin? ? "admin" : "submaster"
        end

 end

If current user is a admin user, they'll get a admin layout else submaster layout.

If possible, please check yield identifies in rails.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文