Ruby on Rails 3 - 不同域上的样式表和 Javascript
我见过许多网站使用单独的域或子域来提供 JavaScript 和样式表,以加快网站加载时间。 如何在我的 Rails 3 Web 应用程序中实现相同的功能?
例如,我希望
显示为
<代码>
我使用此标签来显示样式表: <%= stylesheet_link_tag 'style', :media => '屏幕'%>
I have seen many websites use a separate domain, or subdomain to serve javascript and stylesheets to speed up site load time.
How do I go about implementing the same in my Rails 3 web app?
For example I want
<link href="/stylesheets/style.css?1304887417" media="screen" rel="stylesheet" type="text/css" />
to show as
<link href="http://images.domain.com/stylesheets/style.css?1304887417" media="screen" rel="stylesheet" type="text/css" />
I am using this tag to show the stylesheets: <%= stylesheet_link_tag 'style', :media => 'screen' %>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
提供绝对 URL 是最直接的方法。
我建议您编写自己的视图助手来帮助解决此问题。
编辑:嘿,我今天刚刚学到了一些东西。查看 http://api.rubyonrails.org/classes/ActionView/Helpers/AssetTagHelper “使用资产主机”下的 .html 了解如何设置 AssetTagHelper 来调用 CDN,甚至支持 asset1.example.com、assets2.example.com 等多服务器 CDN 情况。
Supplying an absolute URL is the most direct way.
I recommend writing your own view helper to help with this.
Edit: Hey, I just learned something today. Check out http://api.rubyonrails.org/classes/ActionView/Helpers/AssetTagHelper.html under "Using asset hosts" for info on how to set up AssetTagHelper to call a CDN, even supporting the multiple server CDN case of assets1.example.com, assets2.example.com, etc.