0

我刚刚进入 Sharepoint 的 SPServices,似乎它可能是我需要的业务,即以编程方式更新列表中的值。

作为测试,我尝试使用以下代码更新名为 jQueryList 的列表的 Title 列,其中包含一行 (ID=1)。

<script src="..../js/jquery.SPServices-0.7.1a.min.js" type="text/javascript"></script>
<script src="..../js/jquery-1.7.1.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function() {
$(#inhere).html(waitMessage).SPServices({
    operation: "UpdateListItems",
    listName: jQueryList,
    ID: 1,
    valuepairs: [["Title", "eggs"]],
    completefunc: function (xData, Status) {
        var out = $().SPServices.SPDebugXMLHttpResult({
            node: xData.responseXML,
            outputId: inhere
        });
        $(#inhere).html("").append("<b>This is the output from the UpdateListItems operation:</b>" + out);
        $(#inhere).append("<b>Refresh to see the change in the list above.</b>");
    }
});
}
</script>
<div id="inhere">
</div>

我已经把它放在我的列表 jQueryList 底部的 CEWP 中,但它不会更新我的行中的值。对这个问题的完全新手风格表示歉意,但如果有人有任何指示,我将不胜感激。注意:我通过在默认视图中显示 ID 列来获取 ID 值。

最好的问候/科尔姆

4

1 回答 1

2

下面的内容在同一个子站点中的列表上运行良好,我将不得不进一步挖掘以了解如何为单独的子站点上的列表执行此操作。

<script src="http://ccs.xxx.corp/sites/TDP_SCS/SiteAssets/js/jquery-1.8.2.js" type="text/javascript"></script>
<script src="http://ccs.xxx.corp/sites/TDP_SCS/SiteAssets/js/jquery.SPServices-0.7.2.js" type="text/javascript"></script>
<script language="javascript" type="text/javascript">
$(document).ready(function() {
$().SPServices({
    operation: "UpdateListItems",
    async: false,
    batchCmd: "Update",
    listName: "jQueryList",
    ID: 1,
    valuepairs: [["Title", "eggs & ham"]],
    completefunc: function (xData, Status) {
        alert("Dang");
    }
});
});
</script>
于 2012-10-17T15:09:15.033 回答