erb 布局是如何实现的?

发布于 2024-11-08 10:51:04 字数 181 浏览 0 评论 0原文

Rails ERB 的布局是如何实现的?我尝试查看源代码,但无法确定它们在哪里/如何工作。

我特别感兴趣的是 yield 部分如何工作,erb 如何在模板中包含渲染视图。

我需要它的原因是我可以使用它来生成代码,非 Rails,非 HTML 相关(并且因为了解它们如何工作会很有趣)

How are Rails ERB's layouts implemented? I tried looking through the source, but I couldn't determine where/how they work.

I am specifically interested in how the yield part works, how erb includes the rendered view in a template.

The reason I need it, is so that I can use it for code generation, non Rails, non HTML related ( and because it would be interesting to know how they work )

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

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

发布评论

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

评论(1

左秋 2024-11-15 10:51:04

Rails 渲染由内而外,因此它会首先渲染 show.html.erb 并将其存储在变量中。 渲染布局

然后,它将在您看到的布局内

<%= yield %>

,该布局将被 shot.html.erb 文本替换

这也是以下工作的方式。在您的页面中,您可能会说:

<% content_for(:footer) do %>
  ...
<% end %>

然后您可以在布局中分层:

<%= yield(:footer) %>

我喜欢将其视为变量的由内而外的设置。

Rails renders inside out, so it will render the show.html.erb first and store that in a variable. It will then render the layout

inside the layout you see

<%= yield %>

which will get replaced with the shot.html.erb text

This is also how the following work. In your page, you might say:

<% content_for(:footer) do %>
  ...
<% end %>

And then layer in your layout you can:

<%= yield(:footer) %>

I like to think of it as just an inside-out setting of variables.

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