1

我正在尝试访问我的 scss 文件中 /assets/images 目录中的图像,例如:

background-image: url(/assests/traffic_lights_red.png);

什么都没有返回当我直接使用 URL 时,http://localhost:3000/assests/traffic_lights_red.png我得到一个路由错误:No route matches [GET] "/assests/traffic_lights_red.png"

我已经阅读了有关此主题的其他一些帖子,看起来这应该可以,为什么我会收到路由错误?谢谢!

4

1 回答 1

3

好吧,这可能是一个愚蠢的答案,因为它可能是一个错字,但是

background-image: url(/assests/traffic_lights_red.png);

应该

background-image: url(/assets/traffic_lights_red.png);
于 2012-11-18T18:31:13.490 回答