根据加载的页面有选择地渲染 Rails 部分的最佳方法是什么
例如,所有页面都需要我的页脚部分,但主页有几个单词需要不同,并且页面 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以检查控制器和操作名称:
或者,您可以将不同的局部变量传递给相关页面中的部分:
然后,在“my_partial”中:
You could check the controller and action name:
Alternatively, you could pass in a different local variables to the partial from the page(s) in question:
then, in 'my_partial':