根据加载的页面有选择地渲染 Rails 部分的最佳方法是什么

发布于 2024-12-20 01:54:17 字数 53 浏览 2 评论 0原文

例如,所有页面都需要我的页脚部分,但主页有几个单词需要不同,并且页面 Y 也有一个小的更改。

For example, all pages need my Footer partial, but the home-page has a couple words that need to be different, and Page Y has one minor alteration too.

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

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

发布评论

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

评论(1

初吻给了烟 2024-12-27 01:54:17

您可以检查控制器和操作名称:

<% if controller.controller_name == 'Projects' && controller.action_name == 'index' %>
<p>Alternate content</p>
<% end %>

或者,您可以将不同的局部变量传递给相关页面中的部分:

<%= render 'my_partial', :do_something_wierd => true %>

然后,在“my_partial”中:

<% if do_something_wierd %>
<p>Alternate content</p>
<% end %>

You could check the controller and action name:

<% if controller.controller_name == 'Projects' && controller.action_name == 'index' %>
<p>Alternate content</p>
<% end %>

Alternatively, you could pass in a different local variables to the partial from the page(s) in question:

<%= render 'my_partial', :do_something_wierd => true %>

then, in 'my_partial':

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