如何判断我们是否在rails 2.3.8中的根路径中?
我使用 Rails 2.3.8 开发了一个应用程序,在根路径中,我需要在一个单独的 div 中显示特定的表,而在其他页面上,我需要删除该详细信息,因此我需要检查它是否在根路径中。那么我如何在视图文件中找到它?
I developed a application using Rails 2.3.8 and In there root path I need to show particular table in one separate div and on other pages I need to remove that details so I need to check whether it in root path or not. So how can I find it on view file ??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我同意 apneadiving 的答案,但是如果你愿意,你可以这样做:
或者:
更好:
I agree with apneadiving's answer, however if you wanted to you can do this:
or:
better:
您应该使用真实的架构。
在您的布局中:
在您的根视图中
在其他视图中,请勿使用此容器。
这样你的代码就干净且可维护。
You should rather use a real architecture.
In your layout:
In your root view
In other views, don't use this container.
This way your code is clean and maintainable.