有很好的解决方案可以从Office 365获取数据,并使用客户端对象模型将其移动到另一个平台。即Wictor Wilen解决方案。它在代码背后的工作。
我试图将办公室365的列表数据转移到另一个平台,如azure项目(html页面)。
我确实尝试使用.asmx
webservices。在Office 365网站页面中完美运行。但当脚本swift到任何其他html页面(天蓝色项目)。它没有工作。即使他们不工作,我也通过了证书。这是我的剧本。
function GetData()
{
var soapEnv =
"<soapenv:Envelope xmlns:soapenv='http://schemas.xmlsoap.org/soap/envelope/'><soapenv:Body><GetListItems xmlns='http://schemas.microsoft.com/sharepoint/soap/'><listName>Cloud</listName><query><Query></Query></query> \
<viewFields> \
<ViewFields> \
<FieldRef Name='OfficeCountry' /> \
<FieldRef Name='Title' /> \
</ViewFields> \
</viewFields> \
</GetListItems> \
</soapenv:Body> \
</soapenv:Envelope>";
$.ajax({
url: "https://nexpo.sharepoint.com/_vti_bin/lists.asmx",
type: "POST",
dataType: "xml",
data: soapEnv,
processData: false,
beforeSend : function(req) {
req.setRequestHeader('Authorization',
make_base_auth ('username', 'pwd'));
},
complete: processResult,
contentType: "text/xml; charset=\"utf-8\""
});
}
function processResult(xData, status) {
$(xData.responseXML).find("z\\:row").each(function() {
var lititle= $(this).attr("ows_Title");
alert(lititle);
});
}
function make_base_auth(user, password) {
var tok = user + ':' + password;
var hash = Base64.encode(tok);
return "Basic " + hash;
}
可能是因为跨域问题。但是这样可以这样做吗? 有没有人有更好的解决方案或想法来检索数据?
答案 0 :(得分:1)
查看此博客如何使用客户端对象模型和JQuery而不是Web服务读取SharePoint列表数据。