我正在尝试使用ajax从Sesame Triplestore中检索数据。这可能是一个CORS问题,我正在尝试使用CORS Filter解决它。我的假设是正确的还是我需要在代码中更改某些内容?
$(document).ready(function() {
$.ajax({
url: 'http://localhost:8080/openrdf-sesame/repositories/Test12',
dataType: 'jsonp',
data: {
queryLn: 'SPARQL',
query: "SELECT * WHERE { ?s ?p ?o }",
limit: 100,
infer: 'true',
Accept: 'application/sparql-results+json'
},
success: displayData,
error: displayError
});
});
function displayError(xhr, textStatus, errorThrown) {
alert(textStatus);
alert(errorThrown);
}
function displayData(data) {
var header = $('#result thead').append('<tr/>');
$.each(data.head.vars, function(key,value) {
header.append("<th>" + value + "</th>");
});
$.each(data.results.bindings, function(index, bs) {
var row = $('<tr/>');
$.each(data.head.vars, function(key, varname) {
row.append("<td>" + bs[varname].value + "</td>");
});
$("#result tbody").after(row);
});
}
我在chrome控制台中收到以下错误:
Resource interpreted as Script but transferred with MIME type application/sparql-results+json: "http://localhost:8080/openrdf-sesame/repositories/Test12?callback=jQuery213…=100&infer=true&Accept=application%2Fsparql-results%2Bjson&_=1429660808937". jquery-2.1.3.min.js:4
send jquery-2.1.3.min.js:4
n.extend.ajax jquery-2.1.3.min.js:4
(anonymous function) index_wip3.html:10
j jquery-2.1.3.min.js:2
k.fireWith jquery-2.1.3.min.js:2
n.extend.ready jquery-2.1.3.min.js:2
I jquery-2.1.3.min.js:2
Uncaught SyntaxError: Unexpected token : Test12:2
如果我用application / json替换application / sparql-results + json,则错误保持不变。
如果我将dataType:更改为“json”而不是“jsonp”,则错误更改为:
XMLHttpRequest cannot load http://localhost:8080/openrdf-sesame/repositories/Test12?queryLn=SPARQL&que…HERE+%7B+%3Fs+%3Fp+%3Fo+%7D&limit=100&infer=true&Accept=application%2Fjson. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'null' is therefore not allowed access.
答案 0 :(得分:1)
特定错误是(AFAIK)特定于Chrome的,并且与Chrome无法将application/sparql-results+json
识别为与脚本兼容的媒体类型有关。要解决此问题,请在请求中的Accept参数中将mediatype替换为application/json
。
更一般地说,我应该指出,你在这里所做的不是与CORS相关的。 CORS是为每个请求/响应添加一组HTTP标头,以允许来自浏览器的跨域脚本调用。在这里,您正在使用JSONP回调,这是一种不同的(更旧,安全性稍差)机制,可以实现相同目的。
FWIW Sesame Server目前还不支持CORS标头,但它位于待办事项列表中:https://openrdf.atlassian.net/browse/SES-1757。