0

我有一个 JavaScript 文件向包含 json 数据的文件发出 ajax 请求。json 数据文件位于 Rails 的公共文件夹中,但是,ajax 请求返回 404 not found 错误。

GET http://localhost:3000/public/data/album1.json 404 (Not Found) 

任何人都可以建议为 ajax 请求设置什么 url,或者如果不在公共文件夹中,将 json 文件放在哪里?请注意,除了下面代码中显示的 url,我也尝试过url: 'data/album1.json',但它给了我相同的结果。

if (this._index === null){
            $.ajax({
                url: 'public/data/album1.json',
                dataType: 'json',
                data: {},
4

1 回答 1

0

Try not including the public in the url, but including the slash:

/data/album1.json

于 2013-01-20T21:25:25.590 回答