这是我在Stackoverflow中的第一篇文章。希望你们能解决我的问题。我在domain1.sharepoint.com上有一个HTML页面,我正在尝试使用JQuery + SPServices从domain2.sharepoint.com上的SharePoint获取总列表项。
据我所知,由于同源策略,我需要使用XMLHttpRequest(CORS)来获取我需要的数据。不幸的是,我不确定如何将XMLHttpRequest放入SPServices。我试过了,并且得到了“未定义”的错误。我是JavaScript的新手,非常感谢所有的帮助。
这是我到目前为止所做的:
$.support.cors = true;
function createCORSRequest(method, refURL) {
var xhr = new XMLHttpRequest();
if ("withCredentials" in xhr) {
xhr.open(method, refURL, true);
} else if (typeof XDomainRequest != "undefined") {
xhr = new XDomainRequest();
xhr.open(method, refURL);
} else {
xhr = null;
}
return xhr;
}
function makeCorsRequest() {
var refURL = 'http://domain1.sharepoint.com';
var spURL = refURL;
var xhr = createCORSRequest('GET', spURL);
if (!xhr) {
alert('CORS not supported');
return;
}
xhr.onload = function() {
$().SPServices({
operation: "GetListItems",
webURL: spURL,
listName: "Message Log",
viewName: "{70DFBF9A-5266-4D69-AD01-E848301B51BB}",
async: false,
CAMLViewFields: "<ViewFields><FieldRef Name='Status' /></ViewFields>",
completefunc: function (xData, status) {
$("#countlist").html($(xData.responseXML).find("z\\:row").length);
}
});
};
xhr.onerror = function(e, jqxhr) {
alert('Woops, there was an error making the request. ' + jqxhr);
};
xhr.send();
}
onload = makeCorsRequest;
答案 0 :(得分:1)
我认为你做得太多了。这一行:
$ .support.cors = true;
应该是orde中唯一需要启用跨域的东西。这告诉jQuery启用cors,它会处理剩下的事情。
设置完成后,可以正常方式调用SPServices,并确保设置&#39; webURL&#39;指向domain2的选项。
请注意,虽然这可以在&#39;现代&#39;浏览器,IE(我认为)将提示用户许可。