博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SharePoint JavaScript 更新用户和组字段
阅读量:5036 次
发布时间:2019-06-12

本文共 751 字,大约阅读时间需要 2 分钟。

  前言

  最近,需要更新列表字段,字段的类型是用户和组,so写了这么一段代码

function updateUserField(){    var ctx = new SP.ClientContext.get_current();    var list = ctx.get_web().get_lists().getByTitle('My List');    var item = list.getItemById(1);//Item Id    var assignedToVal = new SP.FieldUserValue();    assignedToVal.set_lookupId(12);//User Id in the site collection    item.set_item("AssignedTo",assignedToVal);//AssignedTo is a column name    item.update();        ctx.executeQueryAsync(        function() {            console.log('Updated');        },        function(sender,args) {            console.log('An error occurred:' + args.get_message());        }    );}ExecuteOrDelayUntilScriptLoaded(updateUserField, "sp.js");

 

转载于:https://www.cnblogs.com/jianyus/p/10232298.html

你可能感兴趣的文章
[TypeScript] Create random integers in a given range
查看>>
tampermonkey,采用js解析自定义脚本,实现网页列表数据采集分析
查看>>
Linux Kernel 整数溢出漏洞
查看>>
hdu 4001 To Miss Our Children Time
查看>>
jmeter+ant+jenkins 框架搭建(二)
查看>>
多播委托与观察者模式联合使用,以及委托与事件的区别
查看>>
批量get_flag v3
查看>>
[ubuntu]一文解决ubuntu换源相关的所有问题
查看>>
封装与解封装
查看>>
最长英语单词链
查看>>
iOS界面跳转
查看>>
hibernate初学感触
查看>>
【基础】栈和堆的区别
查看>>
棋盘制作
查看>>
global name 'validate_on_submit' is not defined错误
查看>>
叫卖集体土地版“公租房 ” (zz)
查看>>
javascript array操作
查看>>
[AWDwR4] Getting AJAX to work in Rails 3 with jQuery
查看>>
CentOS 安装配置TFTP
查看>>
VMware中ubuntu忘记密码的解决办法
查看>>