SharePoint获取当前用户属性

时间:2011-03-18 21:30:33

标签: javascript sharepoint soap caml

我有一个页面需要为登录用户检索部门。理想情况下,我希望能够通过JavaScript SOAP CAML查询来完成。我有用户的id(我假设双重作为GUID),所以检索与ID匹配的行似乎很简单。

我正在研究在SOAP中使用'GetUserProfileByIndex'或'GetUserProfileByGuid'函数,但我似乎无法找到任何可靠的文档或使用它们的体面示例。我希望在JavaScript中做这样的事情 - (这是行不通的):

 var userId = 194;
 "<soapenv:Envelope xmlns:soapenv='http://schemas.xmlsoap.org/soap/envelope/'> \
     <soapenv:Body> \
         <GetUserProfileByIndex  xmlns='http://microsoft.com/webservices/SharePointPortalServer/UserProfileService'> \
             <index>userId</index> \
         </GetUserProfileByIndex > \
     </soapenv:Body> \
 </soapenv:Envelope>";

3 个答案:

答案 0 :(得分:4)

我建议您查看名为SPServices的jQuery Library for SharePoint 2007和2010。 $().SPServices.SPGetCurrentUser可以使用有效的4行代码检索部门:

var thisDepartment = $().SPServices.SPGetCurrentUser({
fieldName: "Department",
debug: false
});

答案 1 :(得分:3)

我从来没有回答过我自己的问题,但我设法提出了一个简单的解决方案。这是我如何去做的

  1. 当用户登录时,有一个包含该用户ID的全局JavaScript变量, - __spUserId
  2. 用户个人资料列表可通过SOAP通过CAML查询访问,标题为“用户信息列表”。
  3. 访问此列表时,您必须将顶级网站设置为指向_catalogs而不是Lists(或其他任何内容)。您可以通过添加元素_catalogs \
  4. 来完成此操作
  5. 由于它是以列表而不是通过userprofile函数访问用户配置文件列表,因此请将查询类型(?)设置为“GetListItems”
  6. 总的来说,这是SOAP调用和CAML查询

    $(document).ready(function() {
        var soapEnv =
            "<soapenv:Envelope xmlns:soapenv='http://schemas.xmlsoap.org/soap/envelope/'> \
                <soapenv:Body> \
                    <GetListItems xmlns='http://schemas.microsoft.com/sharepoint/soap/'> \
                        <listName>User Information List</listName> \
                        <topLevelSite>_catalogs</topLevelSite> \
                        <query> \
                            <Query> \
                                <Where> \
                                    <Contains> \
                                        <FieldRef Name='ID' /> \
                                            <Value Type='Text'>"+_spUserId+"</Value> \
                                    </Contains> \
                                </Where> \
                            </Query> \
                        </query> \
                        <viewFields> \
                            <ViewFields> \
                                <FieldRef Name='Name' /> \
                                <FieldRef Name='Department' /> \
                                <FieldRef Name='ID' /> \
                            </ViewFields> \
                        </viewFields> \
                        <query> \
                            <Query /> \
                        </query> \
                    </GetListItems> \
                </soapenv:Body> \
            </soapenv:Envelope>";
    
        $.ajax({
            url: "/_vti_bin/Lists.asmx",
            type: "POST",
            dataType: "xml",
            data: soapEnv,
            complete: processResult,
            contentType: "text/xml; charset=\"utf-8\""
        });
    });
    

答案 2 :(得分:2)

您应该使用GetUserProfileByName,网站集ID不能用于在用户个人资料商店中查找任何内容。

http://amitkumarmca04.blogspot.com/2008/07/how-access-sharepoint-moss-user-profile.html