我试图在我的rails应用程序中使用tor jquery-fileupload-rails gem的基本版本,并且遇到加载所需javascript的问题。
我克隆了jQuery File Upload Demo并且没有任何问题。但是,默认索引使用高级上传器,我只想要我的应用程序的基本上传器。
我认为只需使用basic setup guide中的html代码替换index.html.erb文件中的代码,即可在演示应用中使用。
然而,基本代码需要一些轨道似乎无法找到的js:
<script src="js/vendor/jquery.ui.widget.js" type="text/javascript"></script>
<script src="js/jquery.iframe-transport.js" type="text/javascript"></script>
<script src="js/jquery.fileupload.js" type="text/javascript"></script>
我得到的错误如下:
GET http://localhost:3000/js/jquery.iframe-transport.js 404 (Not Found) localhost/:41
GET http://localhost:3000/js/jquery.fileupload.js 404 (Not Found) localhost/:42
GET http://localhost:3000/js/vendor/jquery.ui.widget.js 404 (Not Found)
我已根据application.js文件的指示添加了//= require jquery-fileupload
。我不知道如何让rails找到这些文件。提前谢谢!