6

我正在尝试使用对 eXist DB REST API(1) 的 ajax 调用来检索 XML 响应。

谷歌浏览器为我提供了以下控制台错误:

XMLHttpRequest cannot load XMLHttpRequest cannot load http://localhost:8080/exist/rest/db/movies?_query=%2Fmovies. Origin null is not allowed by Access-Control-Allow-Origin Origin null is not allowed by Access-Control-Allow-Origin

虽然 Firefox 中的 Firebug 提供以下控制台错误:

GET http://localhost:8080/exist/rest/db/movies?_query=%2Fmovies 200 OK X 35ms jquery.min.js(line 18)

这是代码的ajax部分:

$.ajax({
                    type: 'GET',
                    dataType: 'xml',
                    url: 'http://localhost:8080/exist/rest/db/movies',
                    data: {
                        _query: _query_value,
                        _key: _key_value,
                        _indent: _indent_value,
                        _encoding: _encoding_value,
                        _howmany: _howmany_value,
                        _start: _start_value,
                        _wrap: _wrap_value,
                        _source: _source_value,
                        _cache: _cache_value
                    },
                    success: function(resp){
                        alert("Resp OK!");
                        console.log(resp);
                    },
                    error: function(hqXHR, textStatus, errorThrown){
                        var x=0;
                        alert("fail0 " + hqXHR + " " + textStatus + " " + errorThrown);
                    }
                });

我已经阅读了有关同一问题的一些相关问题,但我发现我尝试过的任何解决方案都没有运气。

从我的本地机器访问包含上述 ajax 代码段的 index.html,如下所示:

file:///.../index.html

我尝试按如下方式执行 chrome:

chrome.exe --allow-file-access-from-files

另外,我尝试将文件部署到在线主机,使其位于

http://www.<somedomain>.com/index.html

我最接近的解决方案是将数据类型从 xml 更改为 jsonp。收到了响应,但由于它预计是 xml,因此我认为该错误与解析有关,Google Chrome 控制台返回了以下语句:

Uncaught SyntaxError: Unexpected token <

和 Firebug 控制台:

XML can't be the whole program
[Break On This Error]   
</exist:result>
movies...3302057 (line 528, col 15)

回到我的问题,如何通过 eXist DB 正确检索 xml 文档?我究竟做错了什么?

期待您的帮助。我对 Web 开发很陌生,而且我的想法已经不多了。

提前致谢!

其他注意事项:

我正在使用的 jquery.min.js 位于http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js

URIhttp://localhost:8080/exist/rest/db/movies?_query=%2Fmovies在直接键入任何浏览器时都有效。

参考:

(1) - http://www.exist-db.org/exist/devguide_rest.xml;jsessionid=e7096vtg4l7gmocouhe6zhle

更新 (1) 似乎我能够通过运行 eXist DB 作为服务器来解决 CORS 问题,如下所示:bin/server.sh(在 UNIX 中)或 bin\server.bat(在 Windows 中)。

不过,现在我遇到了另一种类型的问题。我在使用 jquery.js 的 Google Chrome 控制台中收到以下错误:

GET http://localhost:8080/exist/rest/db/movies?_query=%2Fmovies  jquery.js:8240
jQuery.ajaxTransport.send jquery.js:8240
jQuery.extend.ajax jquery.js:7719
(anonymous function) index.html:43
jQuery.event.dispatch jquery.js:3332
jQuery.event.add.elemData.handle.eventHandle jquery.js:2941

并使用 jquery.min.js:

GET http://localhost:8080/exist/rest/db/movies?_query=%2Fmovies  jquery.min.js:18
f.support.ajax.f.ajaxTransport.send jquery.min.js:18
f.extend.ajax jquery.min.js:18
(anonymous function) index.html:43
f.event.handle jquery.min.js:17
f.event.add.i.handle.k jquery.min.js:16

错误是什么意思?我的代码的哪一部分做错了?

(2) 更新 1 显然是我面临的一个不必要的问题。服务器模式不适用于我的机器,这就是出现上述错误的原因。

4

1 回答 1

4

这是一个跨域请求,是不允许的。从 localhost 而不是 file:// 进行测试。此外,如果远程服务器打算使用 JSONP 以外的任何数据类型跨域工作,则远程服务器需要返回正确的CORS标头。JSONP 数据类型不适用于返回 XML。

于 2012-05-30T18:59:14.267 回答