SharePoint userProfileProperties JSOM(JavaScript 对象模型)

SharePoint userProfileProperties JSOM (JavaScript Object Model)

我正在尝试从 PeopleManager.getMyProperties() 函数中获取一些信息。 我得到了对象,一些值是 null.when 我从管理的用户配置文件中检查它,我可以看到值。我该如何解决这个问题?

我有获取对象的工作代码。
注意:我想从我之前创建的 User Profile access Custom 属性。 我可以在对象中看到 属性,但没有值。

谢谢大家..

  $(document).ready(function(){         
    SP.SOD.executeOrDelayUntilScriptLoaded(loadUserData, 'SP.UserProfiles.js'); 
  });

  var userProfileProperties;

  function loadUserData(){

    //Get Current Context   
    var clientContext = new SP.ClientContext.get_current();

    //Get Instance of People Manager Class
    var peopleManager = new SP.UserProfiles.PeopleManager(clientContext);

    //Get properties of the current user
    userProfileProperties = peopleManager.getMyProperties();

    clientContext.load(userProfileProperties);

    //Execute the Query.
    clientContext.executeQueryAsync(onSuccess, onFail);

  }

  function onSuccess() {        
       console.log(userProfileProperties)    
  }

  function onFail(sender, args) {
       console.log("Error: " + args.get_message());
  } 

试试下面的代码并告诉我。这对我来说可以。我传递的是用户名而不是我的帐户。这样您就可以在这里传递任何用户帐户。

    function getUserProperties(userName) {    
    var clientContext = new SP.ClientContext.get_current();
    var peopleManager = new SP.UserProfiles.PeopleManager(clientContext);
    var profilePropertyNames = ["FirstName", "LastName", "CustomProperty"]; //Have to load all the needed properties here
    var targetUser = userName.trim();
    var userProfilePropertiesForUser = new SP.UserProfiles.UserProfilePropertiesForUser(clientContext, targetUser, profilePropertyNames);
    userProfileProperties = peopleManager.getUserProfilePropertiesFor(userProfilePropertiesForUser);    
    clientContext.load(userProfilePropertiesForUser);
    clientContext.executeQueryAsync(onSuccess, onFail);

}

function onSuccess() {    
// userProfileProperties result index is same as the properties loaded above
    var firstName=userProfileProperties[0]; 
    var lastName=userProfileProperties[1];
    var customprop=userProfileProperties[2];
}

如果有帮助,请标记为答案。

我忘记写解决方案了,抱歉。

我尝试了@NaveenPrasath 写的代码。它提供了很多字段,但没有 return "Custom Prop Field".

工作代码如下所示。

function getUserProperties(targetUser) {

    var clientContext = new SP.ClientContext.get_current();
    var peopleManager = new SP.UserProfiles.PeopleManager(clientContext);
    personProperties = peopleManager.getPropertiesFor(targetUser);
    clientContext.load(personProperties);
    clientContext.executeQueryAsync(onRequestSuccess, onRequestFail);
}

function onRequestSuccess() {
        var fullName = personProperties.get_userProfileProperties()['CustomPropField'];
}