Ruby on Rails 3 - 不同域上的样式表和 Javascript

发布于 2024-11-07 03:09:29 字数 461 浏览 1 评论 0原文

我见过许多网站使用单独的域或子域来提供 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

无所的.畏惧 2024-11-14 03:09:29

提供绝对 URL 是最直接的方法。

<%= stylesheet_link_tag 'http://images.domain.com/stylesheets/style.css', :media => 'screen' %>

我建议您编写自己的视图助手来帮助解决此问题。

编辑:嘿,我今天刚刚学到了一些东西。查看 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.

<%= stylesheet_link_tag 'http://images.domain.com/stylesheets/style.css', :media => 'screen' %>

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文