Rails 3:获取当前名称空间?
使用方法 :layout_for_namespace 我根据我是在前端还是后端设置应用程序的布局,因为后端使用命名空间“admin”。
我找不到一种很好的方法来找出我所在的命名空间,我找到的唯一方法是解析 params[:controller] 中的字符串。当然,这很容易,似乎是自动防故障的并且工作良好。但我只是想知道是否有更好的、准备好的方法来做到这一点。有谁知道吗?
目前我只是使用以下方法:
def is_backend_namespace?
params[:controller].index("admin/") == 0
end
提前感谢
Arne
using a method :layout_for_namespace I set my app's layout depending on whether I am in frontend or backend, as the backend is using an namespace "admin".
I could not find a pretty way to find out which namespace I am, the only way I found is by parsing the string from params[:controller]. Of course that's easy, seems to be fail-safe and working good. But I am just wondering if there's a better, prepared, way to do this. Does anyone know?
Currently I am just using the following method:
def is_backend_namespace?
params[:controller].index("admin/") == 0
end
Thanks in advance
Arne
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(9)
您可以使用:
You can use:
在控制器外部(例如在视图中),使用controller.class.name。您可以将其转换为辅助方法,如下所示:
Outside the controller (e.g. in the views), use controller.class.name. You can turn this into a helper method like this:
在控制器和视图中,您都可以解析controller_path,例如:
In both the controller and the views, you can parse controller_path, eg.:
没有更优雅,但它使用类而不是参数哈希。我不知道有没有一种“准备好的”方法可以在不进行解析的情况下执行此操作。
Not much more elegant, but it uses the class instead of the params hash. I am not aware of a "prepared" way to do this without some parsing.
在应用程序控制器中设置命名空间:
Setting the namespace in application controller:
这些解决方案都没有考虑具有多个父模块的常量。例如:
从 Rails 3.2.x 开始,您可以简单地:
从 Rails 3.1.x 开始,您可以:
这是因为 #demodulize 与 #deconstantize 相反:
如果您确实需要手动执行此操作,请尝试以下操作:
None of these solutions consider a constant with multiple parent modules. For instance:
As of Rails 3.2.x you can simply:
As of Rails 3.1.x you can:
This is because #demodulize is the opposite of #deconstantize:
If you really need to do this manually, try this:
在Rails 6中,控制器类似乎没有命名空间方法。
在视图中看起来最干净且对我有用的解决方案是:
controller.class.module_parent
具体来说,如果您的命名空间是 Admin:: 并且您想要“admin”,您会这样做:
controller.class.module_parent.to_s.downcase
In Rails 6, the controller class does not seem to have a
namespace
method on it.The solution that seemed cleanest and worked for me in a view was:
controller.class.module_parent
Specifically, if your namespace is Admin:: and you wanted 'admin', you'd do:
controller.class.module_parent.to_s.downcase
Rails 6
访问视图中的命名空间?
不要使用:
controller.namespace.parent == Admin
parent
方法将在 Rails 6.1 中删除,使用
module_parent
代替:controller .namespace.module_parent == 管理
Rails 6
Accessing the namespace in the view?
do not use:
controller.namespace.parent == Admin
the
parent
method will be removed in Rails 6.1use
module_parent
instead:controller.namespace.module_parent == Admin
在 Rails 6 中你可以这样做:
获取父模块。还没有尝试过多重嵌套。但对于一个你可以转换为这样的符号:
In Rails 6 you can do:
to get the parent module. Haven't tried it with multiple nestings. But for one you can convert to a symbol like this: