在SharePoint 2013 之中使用JS从Add-in程序中读取用户配置文件的属性
Posted 放羊的小牛叔
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在SharePoint 2013 之中使用JS从Add-in程序中读取用户配置文件的属性相关的知识,希望对你有一定的参考价值。
经过无数次的实验,只有这个程序可以运行正常 ,代码贴出来纯的JSOM,在我的实验环境老是返回未知错误,为了这一个简单的任务,我已经搞了2天了,不过终于搞出来了,使用各种方法后,还有使用代码。
function GetUserInformation(loginName,propertyName) { $.ajax({ url: appweburl +"/_api/sp.userprofiles.peoplemanager" + "/getuserprofilepropertyfor([email protected],propertyname=‘"+propertyName+"‘)", type: "GET", data:"@v=‘" + encodeURIComponent(loginType + loginName) + "‘", headers: { "accept": "application/json;odata=verbose" }, success: function (result) { d = eval(result); $("#ecPhone").val(d.d.GetUserProfilePropertyFor); }, error: function (error) { alert("error" + error.responseText); } }); }
在我的环境中,var loginType = "i:0#.w|AD\\";
实际上就是标识的声明字串,最后的d.d.GetUserProfilePropertyFor,就是返回的值,我也不知道为什么要这么写。
以上是关于在SharePoint 2013 之中使用JS从Add-in程序中读取用户配置文件的属性的主要内容,如果未能解决你的问题,请参考以下文章
SharePoint 2013 使用 JavaScript 获取当前用户
SharePoint 2013 - 错误“init.js 加载失败”
Sharepoint 2013 中的 Ajax 连接 Web 部件