我的样式表有:
.asc { 字体大小:2em; 背景图像:url(/images/up_arrow.gif); }
.desc { 背景图像:url(/images/down_arrow.gif); }
字体大小有效,但背景图像(箭头)无效。 我得到 ActionController::RoutingError (No route matches [GET] "/images/up_arrow.gif"):
我在 route 尝试了很多东西,但没有任何效果。
请您参考如下方法:
试试这个:
.asc { font-size: 2em; background-image: url(/assets/up_arrow.gif); }
.desc { background-image: url(/assets/down_arrow.gif); }
在我正在开发的 3.1 应用程序中,我就是这样做的。您的 /images
可能映射到 app/public/images
。