现状: 我正在使用SharePoint Web服务调用“ GetListItems ”从SharePoint列表中检索数据。
不幸的是,我有多个列属于Type Person。他们只显示人名,但我也要检索该人的电子邮件地址。
我发现了这个:
<QueryOptions><ExpandUserField>TRUE</ExpandUserField></QueryOptions>
并将其插入此处:
<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
<soap12:Body>
<GetListItems xmlns="http://schemas.microsoft.com/sharepoint/soap/">
<listName>blahblah</listName>
<query>
<Query>
<Where>
<And>
<Eq>
<FieldRef Name='result' />
<Value Type="Text">Relationship declined</Value>
</Eq>
<Eq>
<FieldRef Name='Tracking_x0020_performed' />
<Value Type="Text">Open</Value>
</Eq>
</And>
</Where>
<QueryOptions><ExpandUserField>TRUE</ExpandUserField></QueryOptions>
</Query>
</query>
<viewFields>
<ViewFields xmlns=""> </ViewFields>
</viewFields>
<rowLimit>5000</rowLimit>
</GetListItems>
</soap12:Body>
</soap12:Envelope>
我没有在响应XML中获得有关人员类型字段的任何特定额外信息,只是已经在SP列表中的字段。
那么如何从人员类型字段中检索电子邮件等?正如我所说,我只是得到他们的显示名称。
答案 0 :(得分:0)
我自己解决了。
对于所有感兴趣的人,这是正确的方法:
<queryOptions>
<QueryOptions>
<ExpandUserField>TRUE</ExpandUserField>
</QueryOptions>
</queryOptions>
PLUS它必须低于&#34; GetListItems&#34;级别 - 与&#34; listName&#34;处于同一级别和&#34;查询&#34;