开发模式下的 Rails 3.1 资产问题

发布于 2024-12-06 11:33:17 字数 262 浏览 2 评论 0原文

我正在开发一个 Rails 3.1 应用程序。

我将 7 张图片放入 app/assets/images// 中。

一个页面应该显示 7 张图像。但我的浏览器无法显示所有图像。有些图像不是随机显示的。有时#1、2、3 图像不显示,有时#6,7 图像不显示。

如果我在地址字段中输入图像地址,图像就会正常显示。

这仅发生在开发模式下。生产模式很好地展示了它们。

有人经历过同样的事情吗?

谢谢。

山姆

I am developing a rails 3.1 application.

I put 7 images in app/assets/images//.

A page is supposed to show the 7 images. But my browser doesn't display all the images. Some images are not displayed randomly. Sometimes #1, 2, 3 images are not displayed and other times #6,7 images are not displayed.

If I type the image address in the address field, the image displays well.

This only happened in dev mode. Production mode displays them well.

Has anybody experienced the same thing?

Thanks.

Sam

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

暮凉 2024-12-13 11:33:17

如果 Sprockets 的本地缓存损坏或保存空白图像,有时会发生这种情况。尝试删除 tmp/cache/assets 文件夹并重新启动您的应用程序。在浏览器上执行强制刷新以确保重新获取所有图像。

3.1 中未使用缓存破坏器查询字符串。它已被指纹系统取代(有关更多信息,请参阅资产管道指南)。

如果这是升级的应用程序,请检查环境文件中的设置(来自指南),以确保每种模式的所有选项都设置正确。某些设置组合可能会导致图像出现奇怪的情况。

This can sometimes happen if Sprockets' local cache gets corrupted or saves a blank image. Try deleting the tmp/cache/assets folder and restarting your app. Do a forced refresh on the browser to to ensure all images are refetched.

The cache-buster query string is not used in 3.1. This has been replaced with a fingerprinting system (see the asset pipeline guide for more).

If this is an upgraded app, check the settings in your environment files (from the guide) to make sure all the options are set correctly for each mode. Some combinations of setting can cause weird stuff to happen with images.

小兔几 2024-12-13 11:33:17

您使用什么网络服务器?

我在使用乘客时也遇到过同样的情况。发现一些帖子建议切换到thin,这解决了问题。

What webserver are you using?

I've encountered the same when using passenger. Found some posts advising to switch to thin, which solved the issue.

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