gpt4 book ai didi

javascript - 如何使用 SPServices 和 SharePoint 2010 搜索和替换列表项名称?

转载 作者:行者123 更新时间:2023-12-02 15:39:16 26 4
gpt4 key购买 nike

我的目标是修改整个 SharePoint 网站的列表项(包括显示名称、文件名、标题、URL 等)。由于重大业务重组改变了业务层次结构和项目名称,因此需要这样做。我们有太多的文件和 URL,无法手动编辑。我们需要对整个 SharePoint 站点的所有列表项执行相当于搜索和替换的操作。到目前为止,我们发现的用于更新列表项的代码示例都是简单的设置标志样式的操作,对所有列表项使用相同的值,但我们需要读取每个列表项的内容并使用这些值作为新更新值的一部分(除非 SPServices/SharePoint 有一些与 Unix grep/sed 命令等效的命令)。

为了进行开发和测试,我已将以下 HTML/javascript 代码添加到内容编辑器 Web 部件 (CEWP) 的 HTML 部分中,该部分位于我的 MySite 的内容页面上(因为我真的不想针对实时生产进行实验)数据),并且此 MySite 还包含大量具有各种名称/标题等的文本/DOC/PPT/XLS 文件可供搜索。目前,此脚本尝试修改名为“test4 blah.txt”的单个文件(最终我将替换此 CAMLQuery 以修改多组文件)。 javascript 执行没有错误,成功找到查询的列表项,并在 GUI 中显示假定修改的列表项以及假定修改的新值(即,从 GUI 的用户 Angular 来看,一切看起来都是成功的),但是不幸的是,在幕后,SharePoint 中的实际列表项从未被实际修改过。执行此脚本时,JavaScript 控制台中没有打印任何错误消息。在代码的 UpdateListItems 部分中,我们尝试了内部静态名称、显示名称等的多种变体,但没有成功。

我们使用 Microsoft SharePoint 2010、SPServices (jquery.SPServices-2014.01.min.js) 和 jQuery (jquery-1.11.0.min.js)。我拥有完整的网站集管理员权限。

<html>
<head>
<script type="text/javascript" src="https://MySiteName123/SiteAssets/jquery.min.js"></script>
<script type="text/javascript" src="https://MySiteName123/SiteAssets/jquery.SPServices.min.js"></script>

<title>Edit the file</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">

<style type="text/css">
.btn {
font-family: verdana;
font-weight: normal;
cursor: pointer;
color: #ffffff;
font-size: 16px;
background: #3498db;
padding: 10px 20px 10px 20px;
text-decoration: none;
}
.btn:hover {
background: #3cb0fd;
text-decoration: none;
}
</style>

<script type="text/javascript">
// Define some of our variables as "global" (to be accessible from our jQuery external libraries).
var modifiedListItems = 0;
var modifiedListItemsAttempted = 0;
var ms2min = 1 / (1000 * 60); // constant to convert milliseconds into minutes

function EditTheFile() {
myStartDate = new Date();
$("#ScriptStatus").show();
$('#ScriptStatus').append("Started running at " + myStartDate + "<br>");

// Loop through all sites in the site collection
GetAllSites();

myEndDate = new Date();
myDuration = (myEndDate - myStartDate) * ms2min; // date differences are calculated in milliseconds
$('#ScriptStatus').append("Finished running at " + myEndDate + "; duration was " + (Math.round(myDuration * 100) / 100) + " minutes" + "<br>");
$('#ScriptStatus').append("Number of modified List Items = " + modifiedListItems + " out of " + modifiedListItemsAttempted + " attempts" + "<br>");
}

function GetAllSites() {
$().SPServices({
operation: "GetAllSubWebCollection",
async:false,
completefunc: function (xData, status) {
$(xData.responseXML).find("Webs > Web").each(function() {
mySiteTitle = $(this).attr("Title");
mySiteURL = $(this).attr("Url");
GetAllLists(mySiteURL);
});
}
});
} // end of GetAllSites

function GetAllLists(mySite) {
$().SPServices({
operation: "GetListCollection",
webURL: mySite,
async: false,
completefunc: function (xData, status) {
$(xData.responseXML).find("List").each(function() {
myListTitle = $(this).attr("Title");
myListURL = $(this).attr("DefaultViewUrl");
myListType = GetListType( $(this).attr("BaseType") );
ModifyListItemURL(mySiteURL, myListURL, myListTitle);
});
}
});
} // end of GetAllLists

function ModifyListItemURL(myURL, myListURL, myListName) {
$().SPServices({
operation: "GetListItems",
webURL: myURL,
listName: myListName,
async: false,
CAMLQuery: "<Query><Where><Contains><FieldRef Name='FileLeafRef' /><Value Type='Text'>test4 blah</Value></Contains></Where></Query>",
CAMLViewFields: '<ViewFields Properties="True"/>',
completefunc: function(xData, Status) {
$(xData.responseXML).SPFilterNode('z:row').each(function() {
var listItemID = $(this).attr("ows_ID");
var myListItemName = $(this).attr("ows_FileLeafRef"); // SharePoint display-name of "Name" is equivalent to internal-name of "FileLeafRef"
var myListItemURL = $(this).attr("ows_EncodedAbsUrl"); // SharePoint display-name of "Encoded Absolute URL" is equivalent to internal-name of "EncodedAbsUrl"
var myListItemTitle = $(this).attr("ows_Title");

// Modify the local variable's text values.
var new_myListItemName = myListItemName.replace("blah", "doubleplus-blah");
var new_myListItemURL = myListItemURL.replace("blah", "doubleplus-blah");
console.log("stevie17 modifyTheData for Name, oldString=" + myListItemName + ", newString=" + new_myListItemName);
console.log("stevie18 modifyTheData for EncodedAbsUrl, oldString=" + myListItemURL + ", newString=" + new_myListItemURL);
myListItemName = new_myListItemName;
myListItemURL = new_myListItemURL;

// Modify the data to have the newly-modified text values.
$().SPServices({
operation: 'UpdateListItems',
// webURL: myURL,
listName: myListName,
async: false,
updates: '<Batch><Method ID="1" Cmd="Update">'
+ '<Field Name="ID">' + listItemID + '</Field>'
// + '<Field Name="FileLeafRef">' + myListItemName + '</Field>'
// + '<Field Name="EncodedAbsUrl">' + myListItemURL + '</Field>'
// + '<Field Name="Name">' + myListItemName + '</Field>'
// + '<Field Name="Encoded Absolute URL">' + myListItemURL + '</Field>'
+ '<Field Name="ows_FileLeafRef">' + myListItemName + '</Field>'
+ '<Field Name="ows_EncodedAbsUrl">' + myListItemURL + '</Field>'
+ '</Method></Batch>',
completefunc: function(xData, Status) {
modifiedListItemsAttempted++;

// Append information to the display table.
$('#ListInfoTable > tbody:last').append("" +
"<tr>" + // Start row
"<td>" + mySiteURL + "</td>" + // Site URL
"<td>" + mySiteTitle + "</td>" + // Site Title
"<td>" + myListName + "</td>" + // List Title
"<td>" + myListURL + "</td>" + // List URL
"<td>" + myListType + "</td>" + // List Type
"<td>" + myListItemURL + "</td>" + // List Item URL
"<td>" + myListItemName + "</td>" + // List Item Name
"<td>" + myListItemTitle + "</td>" + // List Item Title
"</tr>" +
"");

if (Status != "success") {
alert("Something went wrong with the update procedure.");
}
else {
modifiedListItems++;
}
}
});
});
}
});
} // end of GetListItemURL

// Display a human-readable form for the item type.
function GetListType(myBaseType) {
var myBaseTypeDescription;
if ( myBaseType == 0 ) { myBaseTypeDescription = "Generic List"; }
else if ( myBaseType == 1 ) { myBaseTypeDescription = "Document Library"; }
else if ( myBaseType == 2 ) { myBaseTypeDescription = "Unused"; }
else if ( myBaseType == 3 ) { myBaseTypeDescription = "Discussion Board"; }
else if ( myBaseType == 4 ) { myBaseTypeDescription = "Survey"; }
else if ( myBaseType == 5 ) { myBaseTypeDescription = "Issue"; }
else { myBaseTypeDescription = "None"; }

return myBaseTypeDescription;
} // end of GetListType
</script>
</head>
<body>
<!-- Display GUI controls for the query operations. -->
<div>
<span class="btn" style="width:100px; text-align:center; margin-top:5px; margin-bottom:10px; display:inline-block" onClick="javascript:EditTheFile();">Edit the file</span>
</div>

<!-- Display summary statistics about the query results. -->
<div id="ScriptStatus" style="padding:5px; margin-bottom:10px; border:thin gray solid; display:none;">
</div>

<!-- Display a table with the query results. -->
<table id="ListInfoTable" cellpadding="2" cellspacing="2" border="1">
<thead>
<tr bgcolor="#E4E4E4">
<th>Site URL</th>
<th>Site Title</th>
<th>List Title</th>
<th>List URL</th>
<th>List Type</th>
<th>ListItem URL</th>
<th>ListItem Name</th>
<th>ListItem Title</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</body>
</html>

最佳答案

根据您想要实现的目标,我建议您投资 Sharegate 等第三方工具。进行您似乎需要的全面更改将比编写代码容易得多,并且该工具也可以很好地用于其他目的。

如果您决定坚持使用编码路线,则需要擅长在控制台中调试 JavaScript。 UpdateListItems 会在响应中给您错误(有时它们可​​能没有意义),您需要学习如何处理它们。

关于javascript - 如何使用 SPServices 和 SharePoint 2010 搜索和替换列表项名称?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32699147/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com