我正在尝试使用Rails作为后端创建单页应用程序,因为这是我所知道的唯一后端框架。我将所有文件放在公共文件夹中,并安装了npm和jspm,以便我可以使用javascript功能。
我要做的是在我的电影控制器中有这个索引动作
def index
@movies = Movie.all
render :json => @movies
end
将电影集合作为JSON数据发送到位于公共文件夹中的index.html文件。我正在使用'fetch'函数来检索client.js文件中的数据:
let api_url = 'http://127.0.0.1:3000'
fetch(api_url).then(function(resp) {
resp.json().then(function(movies) {
console.log(movies)
})
})
这会导致以下错误:
Uncaught (in promise) SyntaxError: Unexpected token <
我不确定这意味着什么,以及我是否正确地解决了这个问题。任何帮助将不胜感激。
答案 0 :(得分:1)
将其更改为:
let api_url = 'http://127.0.0.1:3000/movies'
两者都是相同的:
fetch(api_url).then(function(resp) {
resp.json().then(function(movies) {
console.log(movies)
})
})
OR
fetch(api_url).then(r => r.json())
.then(data => console.log(data))
.catch(e => console.log('error'))