从共享点站点内的外部站点获取集合项
Get collection items from external site within sharepoint site
我需要获取我的 Sharepoint 网站中列表的所有项目。所以我使用了这个片段:
<script type="text/javascript" src="filelink/jquery-1.6.1.min.js"></script>
<script type="text/javascript" src="filelink/jquery.SPServices-0.6.2.min.js"></script>
<script language="javascript" type="text/javascript">
$(document).ready(function() {
$().SPServices({
operation: "GetListItems",
async: false,
listName: "Announcements",
CAMLViewFields: "<ViewFields><FieldRef Name='Title' /></ViewFields>",
completefunc: function (xData, Status) {
$(xData.responseXML).SPFilterNode("z:row").each(function() {
var liHtml = "<li>" + $(this).attr("ows_Title") + "</li>";
$("#tasksUL").append(liHtml);
});
}
});
});
</script>
<ul id="tasksUL"/>
使用 SPServices javascript Library 。它工作正常,但我需要编辑此方法以从我有权访问的另一个站点获取项目。
那么我怎样才能完成这个任务呢?
谢谢,
我相信你只需要添加 webURL
部分如下:
$(document).ready(function() {
$().SPServices({
operation: "GetListItems",
webURL: "https://www.myweburlgoeshere.com",
async: false,
listName: "Announcements",
CAMLViewFields: "<ViewFields><FieldRef Name='Title' /></ViewFields>",
completefunc: function (xData, Status) {
$(xData.responseXML).SPFilterNode("z:row").each(function() {
var liHtml = "<li>" + $(this).attr("ows_Title") + "</li>";
$("#tasksUL").append(liHtml);
});
}
});
});
我需要获取我的 Sharepoint 网站中列表的所有项目。所以我使用了这个片段:
<script type="text/javascript" src="filelink/jquery-1.6.1.min.js"></script>
<script type="text/javascript" src="filelink/jquery.SPServices-0.6.2.min.js"></script>
<script language="javascript" type="text/javascript">
$(document).ready(function() {
$().SPServices({
operation: "GetListItems",
async: false,
listName: "Announcements",
CAMLViewFields: "<ViewFields><FieldRef Name='Title' /></ViewFields>",
completefunc: function (xData, Status) {
$(xData.responseXML).SPFilterNode("z:row").each(function() {
var liHtml = "<li>" + $(this).attr("ows_Title") + "</li>";
$("#tasksUL").append(liHtml);
});
}
});
});
</script>
<ul id="tasksUL"/>
使用 SPServices javascript Library 。它工作正常,但我需要编辑此方法以从我有权访问的另一个站点获取项目。
那么我怎样才能完成这个任务呢?
谢谢,
我相信你只需要添加 webURL
部分如下:
$(document).ready(function() {
$().SPServices({
operation: "GetListItems",
webURL: "https://www.myweburlgoeshere.com",
async: false,
listName: "Announcements",
CAMLViewFields: "<ViewFields><FieldRef Name='Title' /></ViewFields>",
completefunc: function (xData, Status) {
$(xData.responseXML).SPFilterNode("z:row").each(function() {
var liHtml = "<li>" + $(this).attr("ows_Title") + "</li>";
$("#tasksUL").append(liHtml);
});
}
});
});