好吧,我是 Backbone.js 的新手,我只是想让一个简单的集合获取工作。
在服务器端,我正在发送以下 JSON,我已验证这在响应正文中出现:
[{"id":1,"user_id":1,"last_name":"Smith","first_name":"Bob","date_of_birth":"1980-01-06T05:00:00Z","created_at":"2013-04-26T00:50:00Z","updated_at":"2013-04-26T00:50:00Z"},{"id":2,"user_id":1,"last_name":"Smith","first_name":"Roger","date_of_birth":"1985-01-01T05:00:00Z","created_at":"2013-04-27T04:00:00Z","updated_at":"2013-04-27T04:00:00Z"}]
这通过了 JSONLint
我的服务器在 Jetty (Scala/Scalatra) 中的 localhost:8080 上运行,而我的客户端东西则由在 localhost:8083 上运行的 nginx 提供服务。我认为我的 CORS 支持工作正常。在任何情况下,我都会收到 200 响应以及我的 JSON。
请求看起来像这样(Opera 开发控制台):
GET /api/persons HTTP/1.1
User-Agent: Opera/9.80 (X11; Linux x86_64) Presto/2.12.388 Version/12.15
Host: localhost:8080
Accept-Language: en-US,en;q=0.9
Accept-Encoding: gzip, deflate
Referer: http://localhost:8083/
Connection: Keep-Alive
Accept: */*
X-Requested-With: XMLHttpRequest
Origin: http://localhost:8083
响应中的标头是:
HTTP/1.1 200 OK
Access-Control-Allow-Origin: http://localhost:8083
Access-Control-Allow-Credentials: true
Content-Type: application/json;charset=UTF-8
Server: Jetty(8.1.8.v20121106)
这使我的 fetch 错误回调跳闸。所以,接下来我写了一个常规的 jquery $.getJSON(),然后是 $.ajax 形式的相同请求。没运气。
我终于在 $.ajaxSetup 中添加了一些检查(哦,coffeescript,顺便说一句):
$.ajaxSetup
error: (jqXHR, exception) ->
if jqXHR.status == 0
alert('Not connect.\n Verify Network.')
else if jqXHR.status == 404
alert('Requested page not found. [404]')
else if jqXHR.status == 500
alert('Internal Server Error [500].')
else if exception == 'parsererror'
alert('Requested JSON parse failed.')
else if exception == 'timeout'
alert('Time out error.')
else if exception == 'abort'
alert('Ajax request aborted.')
else
alert('Uncaught Error.\n' + jqXHR.responseText)
'parsererror' 被触发。所以,嗯。我错过了一些明显的东西,我知道。