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

标签 javascript jquery replace sharepoint-2010 spservices

我的目标是修改整个 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/

相关文章:

javascript - 如何使用字典从 python 中提取嵌套的 JSON 值?

replace - 如何找到每个匹配的 byte slice 并将其替换为另一个片?

JavaScript 正则表达式 : How to create a RegEx pattern using a specific value from a Variable?

excel - excel中如何使用替换字符?

javascript - 如何获取函数中父标签的属性值?

javascript - Php 搜索表单在不按下搜索按钮的情况下显示结果,它应该等到按下按钮才显示结果

javascript - Angular 'undefined is not a function' 定义组件

jquery - 使用 Jqueryeach() 循环输入字段进行验证

jquery - CSS 禁用按钮的颜色仅更改一次

jquery - 为 : Androis, iOS 和 Windows 编写移动应用程序三次?