我需要使用 Sp-services 将多个值(另一个自定义列表的 ID 字段)添加到多个查找字段。
要使用的数据的正确格式是什么?
我已经尝试过(5,9,6),但只选择了第一项。
我不太确定为什么要这样做,因为您将添加这些项目 - 它们不能另存为值,因为列和查找列表之间存在关系,即如果您有 List1 的查找列,并且您从 List2 中添加了一个 ID 为 99 的新值并保存, 它将在 List1 中保存对 ID 为 99 的列表项的引用。
但如果有的话,这是可能的,这就是我附加多个查找选定值的方式:
var lines = additionalTechnologies.split(';#');
$.each(lines, function (index) {
if (lines[index].length < 3) {
$("select[title='Additional Technologies selected values']:first").append("<option value=" + lines[index] + " title=" + lines[index + 1] + ">" + lines[index + 1] + "</option>");
$("select[title='Additional Technologies possible values'] option[value=" + lines[index] + "]").remove();
}
});
,然后将它们从"所有项目"列表中删除。反之亦然。
我已经找到了一种方法。
// "list1Id" contains the array of LIST1 ID fields that you want to add...
// "MULTIPLELOOKUPFIELD" is the multiple lookup field in the LIST2...
var multipleLookupValue ="";
for(i = 0; i < list1Id.length ; i++)
{
multipleLookupValue = multipleLookupValue + list1Id[i]+";#data;#";
}
var method = "UpdateListItems";
$().SPServices({
operation: method,
async: false,
batchCmd: "New",
listName: "LIST2" ,
valuepairs: [["MULTIPLELOOKUPFIELD",multipleLookupValue]],
completefunc: function (xData, Status) {
//alert("Added new item to LIST2 list");
}
});
也许它会帮助某人...