跳至内容 跳至搜索
方法
U

实例公共方法

url_for(options = nil)

返回给定options的 URL。这接受与 Action Controller 中的url_for相同的选项(请参阅ActionDispatch::Routing::UrlFor#url_for的文档)。请注意,默认情况下,:only_pathtrue,因此您将获得相对的"/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
# 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