我想知道如何在 image_tag 中指定完整的 URL src 属性?
目前我使用:
image_tag(object.team.team_logo, :alt => object.team.name)
并且 src 属性被错误地转换为:
http://0.0.0.0:3000/assets/%20http://a.espncdn.com/i/teamlogos/soccer/500/103.png
我尝试运行 rake assets:precompile && rake assets:clean_expired 但该应用程序仍将完整的 url 视为预编译资产。
提前致谢!