2

该函数在 application_help.rb 中定义:

  def gravatar_url_for(email, options = {})

    url_for(
      {
        :protocol => 'http://',
        :host => 'www.gravatar.com',
        :controller => 'avatar',
          # :controller => 'avatar.php',
        :gravatar_id => Digest::MD5.hexdigest(email),
        :only_path => false
      }.merge(options)
    )

  end

它在视图中使用:

<%= image_tag(gravatar_url_for user.email, {:d => 'identicon', :s => 32, :r => 'g'}) %>

偶尔,它的使用会导致路由错误:

No route matches {:controller=>"avatar", :d=>"identicon", :r=>"g", :gravatar_id=>"486575e581db04b7c8ca218af8488657", :s=>32}

发生错误时提供了有效的电子邮件。

如果我用这个逻辑替换 url_for() ,它会按预期工作:

url_for("http://www.gravatar.com/avatar/" + Digest::MD5.hexdigest(email) + "?d=identicon&s=40&r=g")

** 编辑 ** 我从 routes.rb 文件中删除了以下行:

# This is a legacy wild controller route that's not recommended for RESTful applications.
# Note: This route will make all actions in every controller accessible via GET requests.
match ':controller(/:action(/:id(.:format)))'

有没有办法让 url_for 在没有“旧版野控制器路由”的情况下工作?

4

1 回答 1

0

你可能想看看 Rails 的Gravtastic插件,它支持 Ruby 和 JavaScript 中的 Gravatar 图像。

于 2011-10-22T20:51:53.130 回答