0

我需要一个脚本,将我选择的所有列表项复制到另一个(自定义)列表。我找到了很好的文档解决方案:

var context = SP.ClientContext.get_current();
var web = context.get_web();
context.load(web);

var _destinationlib = web.get_lists().getByTitle('DestinationLibrary');
context.load(_destinationlib);
var notifyId;
var currentlibid = SP.ListOperation.Selection.getSelectedList();

var currentLib = web.get_lists().getById(currentlibid);

var selectedItems = SP.ListOperation.Selection.getSelectedItems(context);
var count = CountDictionary(selectedItems);

for(var i in selectedItems)
{
 alert('Now copying ' + i);
 var currentItem =    currentLib.getItemById(selectedItems[i].id);
 context.load(currentItem);

var File = currentItem.get_file();
context.load(File);

//Excecuting executeQueryAsync to get the loaded values
context.executeQueryAsync
(
function (sender, args) {
if(File != null) {

var _destinationlibUrl =  web.get_serverRelativeUrl() + _destinationlib.get_title() + '/' +  File.get_name();

File.copyTo(_destinationlibUrl, true);
notifyId = SP.UI.Notify.addNotification('Moving file…' + File.get_serverRelativeUrl() + 'to' + _destinationlibUrl, true);

//Excecuting executeQueryAsync to copy the file
context.executeQueryAsync(
function (sender, args) {
SP.UI.Notify.removeNotification(notifyId);

SP.UI.Notify.addNotification('File copied successfully', false);
},
function (sender, args) {
SP.UI.Notify.addNotification('Error copying file', false);
SP.UI.Notify.removeNotification(notifyId);
showError(args.get_message());
});
}
},
function (sender, args) {
alert('Error occured' + args.get_message());
}
);
}

我不知道我必须改变什么才能让它适用于正常的列表项。我试着交换

var File = currentItem.get_file();

context.load(File);

var title = currentItem.get_Title();
context.load(title);

var number = currentItem.get_item('number');
context.load(number);

但它不起作用。如果有人可以给我提示我必须做什么,那就太好了。

很多谢谢

法布卢斯

4

1 回答 1

1

看起来您从这里获取了上面的代码。

尽量专心。此代码将选定的文件(不是列表项!)复制到另一个文档库!

为了您的需要,最好尝试编写自己的解决方案。有关详细信息,请参阅SharePoint JavaScript 类库。您可以有两种可能的架构:

  1. 通过 JavaScript 完成所有工作。第一步是SP.List 的 addItem 方法
  2. 在 JavaScript 中处理客户端上的选择并调用您的自定义服务器端组件(可能是应用程序页面)以进行项目复制(在初始列表中已存在项目的新列表中创建副本。)。参见这个例子。

还要小心 context.load。建议在 context.executeQueryAsync 中编写所有后续代码。使用 FF 中的 Firebug 和 Chrome 中的开发人员工具来调试您的代码并找出问题所在。

于 2012-06-26T15:18:08.613 回答