JSOM Create ListFolder

<script type=”text/javascript”>

var currentcontext = null;

var currentweb = null;

ExecuteOrDelayUntilScriptLoaded(AddFolder, “sp.js”);

function AddFolder()
{

currentcontext = new SP.ClientContext.get_current();

currentweb = currentcontext.get_web();

this.list = currentweb.get_lists().getByTitle(“ListName“);

var listItemCreationInfo = new SP.ListItemCreationInformation();

listItemCreationInfo.set_underlyingObjectType(SP.FileSystemObjectType.folder);

listItemCreationInfo.set_leafName(‘NewFolder‘);

var newItem = list.addItem(listItemCreationInfo);

newItem.update();

currentcontext.load(currentweb);

currentcontext.load(list);

currentcontext.executeQueryAsync(Function.createDelegate(this, this.ExecuteOnSuccess),
Function.createDelegate(this, this.ExecuteOnFailure));

}

function ExecuteOnSuccess(sender, args) {
SP.UI.Notify.addNotification(‘Folder created successfully’, false);
}

function ExecuteOnFailure(sender, args) {
alert(“Error in Script”);
}
上善若水 海纳百川
原文地址:https://www.cnblogs.com/NetUser/p/2760771.html