gpt4 book ai didi

javascript - SharePoint 加载项 JSOM 创建列表项错误。 "this"未定义

转载 作者:行者123 更新时间:2023-11-30 15:36:34 25 4
gpt4 key购买 nike

我需要让我的 SharePoint 加载项创建一个列表项。我从 OfficeDev Github 站点获得了该功能 here .当我调用该函数时,它在“this”首次出现的那一行失败。

错误是:无法设置未定义或空引用的属性“oListItem”

// line calling the function
createDELListItem(document.getElementById("resultpanel"), uniqueID, "MTD_On_Demand");

// function
function createDELListItem(resultpanel, extractionID, extractionType) {
var clientContext;
var oWebsite;
var oList;
var itemCreateInfo;

clientContext = new SP.ClientContext.get_current();
oWebsite = clientContext.get_web();
oList = oWebsite.get_lists().getByTitle("Global_Variable_Store");

itemCreateInfo = new SP.ListItemCreationInformation();
// Line throwing the "null or undefined" error
this.oListItem = oList.addItem(itemCreateInfo);
//A guid to send with message that uniquely identifies the list item.
this.oListItem.set_item("ExtractionID", extractionID);
//A brief title (description) of the variable set here in this list item.
this.oListItem.set_item("Extraction Type", extractionType);
//The Variable name
this.oListItem.set_item("StartTime", convertThisDate);
//The process descriptor that set the variable. This is set by the code.
this.oListItem.update();

clientContext.load(this.oListItem);
clientContext.executeQueryAsync(
Function.createDelegate(this, successHandler),
Function.createDelegate(this, errorHandler)
);

function successHandler() {
resultpanel.innerHTML = "Go to the <a href='../Lists/Global_Variable_Store'>list</a> to see your new item.";
}

function errorHandler() {
resultpanel.innerHTML = "Request failed: " + arguments[1].get_message();
}
}

最佳答案

在你的情况下似乎 this 是未定义的,我会通过替换用于创建列表项的函数来避免使用 this 关键字:

function addListItem(list,itemProperties,success,error)
{
var ctx = list.get_context();
var itemCreateInfo = new SP.ListItemCreationInformation();
var listItem = list.addItem(itemCreateInfo);
for(var name in itemProperties) {
listItem.set_item(name, itemProperties[name])
}
listItem.update();
ctx.load(listItem);
ctx.executeQueryAsync(
function() {
success(listItem);
},
error
);
}

用法

var properties = {
"ExtractionID" : "----",
"Extraction Type": "----",
"StartTime": "----"
};
var ctx = SP.ClientContext.get_current();
var web = ctx.get_web();
var list = web.get_lists().getByTitle("Global_Variable_Store");
addListItem(list,properties,
function(contactItem){
console.log('Item has been created successfully');
},
function(sender,args){
console.log('Error occured while creating item:' + args.get_message());
});

关于javascript - SharePoint 加载项 JSOM 创建列表项错误。 "this"未定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41449970/

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