我的资产/javascript中有以下js
jQuery ->
if $('.pagination').length
$(window).scroll ->
url = $('.pagination .next_page').attr('href')
if url && $(window).scrollTop() > $(document).height() - $(window).height() - 50
$('.pagination').html('<img src="images/spinner.gif" />')
$.getScript(url)
$(window).scroll()
在这里,我需要一个微调器动画,但不是在 localhost 上获取的。
No route matches [GET] "/images/spinner.gif"
我已经跑了
rake assets:precompile:all RAILS_ENV=development
并且我的图像被正确放置在资产/图像中(和公共)所以这让我认为我调用这个图像的方式一定是错误的。