我已经在app/assets/images
目录中放了一张图片,现在我想从我的application.js
文件中提供它。
就像是:
beforeSend: function() {
('#any_div').html("<img src='/assets/loading.gif'>");
}
它尝试从我当前的控制器加载,我得到:
Request URL:http://localhost:3000/users/loading.gif
Request Method:GET
Status Code:401 Unauthorized
这里有什么提示吗?
提前致谢。