在一个Rails应用程序中,我需要在js文件(app / assets / javascripts / projects.js.coffee)中加载一个变量文件的内容。该文件现在存储在app / templates中,但如果其他位置可以使其工作,我可以将其移动到其他位置。
我试过
$.get "app/templates/project.txt", (template) ->
console.log template
只是看,作为第一步,如果文件已加载但我得到了
GET http://localhost:3000/app/templates/project.txt 404 (Not Found)
实现目标的正确方法是什么?
谢谢