我有一个页面需要为登录用户检索部门。理想情况下,我希望能够通过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>";
答案 0 :(得分:4)
我建议您查看名为SPServices的jQuery Library for SharePoint 2007和2010。 $().SPServices.SPGetCurrentUser可以使用有效的4行代码检索部门:
var thisDepartment = $().SPServices.SPGetCurrentUser({
fieldName: "Department",
debug: false
});
答案 1 :(得分:3)
我从来没有回答过我自己的问题,但我设法提出了一个简单的解决方案。这是我如何去做的
总的来说,这是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