方法
- U
实例公共方法
url_for(options = nil) 链接
返回给定options
的 URL。这接受与 Action Controller 中的url_for
相同的选项(请参阅ActionDispatch::Routing::UrlFor#url_for
的文档)。请注意,默认情况下,:only_path
为true
,因此您将获得相对的"/controller/action"
,而不是像"http://example.com/controller/action"
这样的完全限定 URL。
选项
-
:anchor
- 指定要附加到路径的锚点名称。 -
:only_path
- 如果为真,则返回相对 URL(省略协议、主机名和端口)(默认情况下为true
,除非指定:host
)。 -
:trailing_slash
- 如果为真,则添加尾部斜杠,如"/archive/2005/"
。请注意,目前不推荐使用此方法,因为它会破坏缓存。 -
:host
- 如果提供,则覆盖默认(当前)主机。 -
:protocol
- 如果提供,则覆盖默认(当前)协议。 -
:user
- 内联 HTTP 身份验证(仅在:password
也存在时才提取)。 -
:password
- 内联 HTTP 身份验证(仅在:user
也存在时才提取)。
依赖于命名路由
将记录(如 Active Record)而不是哈希作为 options 参数传递将触发该记录的命名路由。查找将在类的名称上进行。因此,传递 Workshop 对象将尝试使用workshop_path
路由。如果您有嵌套路由,例如admin_workshop_path
,您将不得不显式调用它(url_for
不可能猜测该路由)。
隐式控制器命名空间
使用:controller
选项传递的控制器将保留其命名空间,除非它是一个绝对命名空间。
示例
<%= url_for(action: 'index') %>
# => /blogs/
<%= url_for(action: 'find', controller: 'books') %>
# => /books/find
<%= url_for(action: 'login', controller: 'members', only_path: false, protocol: 'https') %>
# => https://www.example.com/members/login/
<%= url_for(action: 'play', anchor: 'player') %>
# => /messages/play/#player
<%= url_for(action: 'jump', anchor: 'tax&ship') %>
# => /testing/jump/#tax&ship
<%= url_for(Workshop) %>
# => /workshops
<%= url_for(Workshop.new) %>
# relies on Workshop answering a persisted? call (and in this case returning false)
# => /workshops
<%= url_for(@workshop) %>
# calls @workshop.to_param which by default returns the id
# => /workshops/5
# to_param can be re-defined in a model to provide different URL names:
# => /workshops/1-workshop-name
<%= url_for("http://www.example.com") %>
# => http://www.example.com
<%= url_for(:back) %>
# if request.env["HTTP_REFERER"] is set to "http://www.example.com"
# => http://www.example.com
<%= url_for(:back) %>
# if request.env["HTTP_REFERER"] is not set or is blank
# => javascript:history.back()
<%= url_for(action: 'index', controller: 'users') %>
# Assuming an "admin" namespace
# => /admin/users
<%= url_for(action: 'index', controller: '/users') %>
# Specify absolute path with beginning slash
# => /users
来源: 显示 | 在 GitHub 上
# File actionview/lib/action_view/routing_url_for.rb, line 82 def url_for(options = nil) case options when String options when nil super(only_path: _generate_paths_by_default) when Hash options = options.symbolize_keys ensure_only_path_option(options) super(options) when ActionController::Parameters ensure_only_path_option(options) super(options) when :back _back_url when Array components = options.dup options = components.extract_options! ensure_only_path_option(options) if options[:only_path] polymorphic_path(components, options) else polymorphic_url(components, options) end else method = _generate_paths_by_default ? :path : :url builder = ActionDispatch::Routing::PolymorphicRoutes::HelperMethodBuilder.public_send(method) case options when Symbol builder.handle_string_call(self, options) when Class builder.handle_class_call(self, options) else builder.handle_model_call(self, options) end end end